赞
踩
(1)修改表名
alter table 旧表名 rename 新表名;
(2)删除表
drop table 表名;
(3)删除表字段
alter table 表名 drop 字段名;
(4)添加表字段
alter table 表名 add字段名 数据类型 [约束];
(5)修改字段
- alter table 表名 change 旧字段名 新字段名 新数据类型: --修改字段名和数据类型
- alter table 表名 modify 字段名 新数据类型; --只修改字段的数据类型
alter:修改
exists:存在
add:增加
change:变更
modify:修饰、改变
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。