mysql学习笔记

来源:互联网 发布:java xml文件解析 编辑:程序博客网 时间:2024/06/05 20:28

修改table名字

 alter table teacher rename teachers;

修改字段属性

 alter table teacher modify id tinyint not null;

添加一个列

alter table teacher add time timestamp not null;

删除一个列

alter table teacher drop column timestamp;

原创粉丝点击