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

lunix修改mysql表结构

时间:2018-07-28 21:44:04      阅读:166      评论:0      收藏:0      [点我收藏+]

标签:first   div   类型   lun   after   删除   nbsp   class   odi   

增加字段:

1 alter table [tablename] add [字段名] [字段类型] first(首位);
2 
3 alter table [tablename] add [字段名] [字段类型] after [其他已有字段](后面);

删除字段:

1 alter table [tablename] drop [字段名]

修改字段:(改变)

1 alter table [tablename] change [已有字段名] [新字段名] [字段类型];

修改字段类型:(修改)

1 alter table [tablename] modify [已有字段名] [字段类型]

修改表名:

1 alter table [tablename] rename [new_tablename];

 

lunix修改mysql表结构

标签:first   div   类型   lun   after   删除   nbsp   class   odi   

原文地址:https://www.cnblogs.com/pywjh/p/9383257.html

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