MySQL学习篇--基础篇02

建立表以后的修改 添加列 基本形式: alter table 表名 add 列名 列数据类型 [after 插入位置]; 示例: 在表的最后追加列 address: alter table students add address char(60); 在名为 age 的列后插入列 birthday: alter table students add birthday date after a
相关文章
相关标签/搜索