码迷,mamicode.com
首页 > 其他好文 > 详细

alter table

时间:2019-06-23 17:22:47      阅读:84      评论:0      收藏:0      [点我收藏+]

标签:alter   mod   drop   mic   --   修改表   oat   mamicode   表名   

技术图片

--修改表名
alter table student rename teacher
--修改数据类型
alter table student modify column score int
--修改列名和数据类型
alter table student change column name sname varchar(250)
--增加列
alter table student add column score FLOAT
alter table student add columns(salary FLOAT,grade FLOAT)--有问题
--删除列
alter table teacher drop column salary

alter table

标签:alter   mod   drop   mic   --   修改表   oat   mamicode   表名   

原文地址:https://www.cnblogs.com/hapyygril/p/11073298.html

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