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

03 mysql补充 (进阶)

时间:2018-06-11 02:11:19      阅读:185      评论:0      收藏:0      [点我收藏+]

标签:rop   alter   first   字段名   mys   arch   位置   col   fir   

增加字段

alter table tb1 add age int first; 增加到第一

alter table tb1 add sex int after id; # 改变位置,id是字段名字

alter table tb1 modify age varchar(10); # 修改类型

alter table tb1 change age sex varchar(10); # 更改字段,类型不变

alter table tb1 tb1 rename ta2; # 更改表名字

alter table tb1 drop age; # 删除字段

drop user 用户名 # 删除用户

03 mysql补充 (进阶)

标签:rop   alter   first   字段名   mys   arch   位置   col   fir   

原文地址:https://www.cnblogs.com/zcmq/p/9165225.html

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