sql对于表格中列的删改

Posted thelightone

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sql对于表格中列的删改相关的知识,希望对你有一定的参考价值。

mysql与oracle

char为定长字符串

var为可变字符串

修改表名:rename table1 to table2;(mysql)

                 alter table1 rename to table2(oracle)

 

新增列名:alter table product(表名)add column product_1 varchar(40) not null,add column product_2;(mysql)

                  alter table product  (表名)   add  (product_1 varchar(40) not null,product_2);(oracle)

 

                  alter table product  (表名)   drop  column product_1,drop column product_2;

                  alter table product  (表名) drop (prodict_1,product_2);

mysql修改列名要重复的加add column,drop column,oracle只需要加()

以上是关于sql对于表格中列的删改的主要内容,如果未能解决你的问题,请参考以下文章

mysql中列的增删改

取消选中 jqxGrid 中列的所有复选框

JAVAWEB学习笔记08

BootStrap--具有增删改查功能的表格Demo

BootStrap table动态增删改表格内数据

在sql中列的值之间创建行