ALTER TABLE:添加,修改,刪除表的列,約束等表的定義。 查看列:desc 表名; 修改表名:alter table t_book rename to bbb; 添加列:alter table 表名 add column 列名 varchar(30); 刪除列:alter ...
查看表的字段信息:desc 表名 查看表的所有信息:show create table 表名 添加主鍵約束:alter table 表名 add constraint 主鍵 形如:PK 表名 primary key 表名 主鍵字段 添加外鍵約束:alter table 從表 add constraint 外鍵 形如:FK 從表 主表 foreign key 從表 外鍵字段 references ...
2019-06-13 20:36 0 706 推薦指數:
ALTER TABLE:添加,修改,刪除表的列,約束等表的定義。 查看列:desc 表名; 修改表名:alter table t_book rename to bbb; 添加列:alter table 表名 add column 列名 varchar(30); 刪除列:alter ...
ALTER TABLE:添加,修改,刪除表的列,約束等表的定義。 查看列: desc 表名; 修改表名: alter table t_book rename to bbb; 添加列: alter table 表名 add ...
原文:http://blog.csdn.net/ws84643557/article/details/6939846 MySQL 添加列,修改列,刪除列 示例:ALTER TABLE tb_financial MODIFY CREATE_TIME DATETIME ...
ALTER TABLE:添加,修改,刪除表的列,約束等表的定義。 查看列:desc 表名; 修改表名:alter table t_book rename to bbb; 添加列:alter table 表名 add column 列名 varchar(30); 刪除列 ...
查看表的字段信息:desc 表名; 查看表的所有信息:show create table 表名; 添加主鍵約束:alter table 表名 add constraint 主鍵 (形如:PK_表名) primary key 表名(主鍵字段); 添加外鍵約束:alter table ...
1、添加 2、刪除 ...