Mysql 语句

Posted Eee_xiang

tags:

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

添加一列
alter table 表名 add column 列名 varchar(20) not null;


添加一列在某列的后面

alter table 表名 add column 列名 varchar(20) not null after user1;


添加一列在最前面

alter table 表名 add column 列名 varchar(20) not null first;


删除一列

alter table yusheng drop column def ;





以上是关于Mysql 语句的主要内容,如果未能解决你的问题,请参考以下文章

如何查看mysql中执行sql语句

mysql查询语句

mysql语句中NOT NULL的意思

mysql语句查询问题

mysql怎么一次执行多条SQL语句

java 批量执行sql语句 mysql批量执行sql语句