MySQL學習篇--基礎篇02

建立表以後的修改 添加列 基本形式: alter table 表名 add 列名 列數據類型 [after 插入位置]; 示例: 在表的最後追加列 address: alter table students add address char(60); 在名爲 age 的列後插入列 birthday: alter table students add birthday date after a
相關文章
相關標籤/搜索