MySQL 添加列,修改列,刪除列

MySQL 添加列,修改列,刪除列 ALTER TABLE:添加,修改,刪除表的列,約束等表的定義。html 查看列:desc 表名; 修改表名:alter table t_book rename to bbb; 添加列:alter table 表名 add column 列名 varchar(30); 刪除列:alter table 表名 drop column 列名; 修改列名MySQL: a
相關文章
相關標籤/搜索