码迷,mamicode.com
首页 > 数据库 > 详细

Mysql 语句

时间:2018-06-08 14:35:28      阅读:187      评论:0      收藏:0      [点我收藏+]

标签:family   table   null   alt   drop   char   表名   span   style   

添加一列
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 语句

标签:family   table   null   alt   drop   char   表名   span   style   

原文地址:https://www.cnblogs.com/Eeexiang/p/9154829.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!