students 一个数据表名字
1.添加 alter table 表名 add 字段 约束
alter table students add birthdaty datetime
2.修改 modify(不重命名不该 健名 改类型 约束)/chage(重命名 )
alter table students modify birthdaty date 改约束datetime 为 date
alter table students change birthdaty birth date default ‘2008-1-1’ 改健名 birthdaty 为 birth
3.删除
网友评论