摘要: 修改表的字段: 基本用法 ALTER TABLE 表名 执行动作; alter table student add score int(3) not null; 添加新字段 ADD 字段名 类型(宽度) 约束条件; add score int(3) not null; 可加AFTER字段名; add 阅读全文
posted @ 2019-01-10 17:23 美滋滋的胖虎 阅读(265) 评论(0) 推荐(0) 编辑