MySql修改資料表的基本操作 DDL操作

2022-09-02 06:48:10 字數 1480 閱讀 8148

1.檢視資料庫的基本語句:show databases;

2.選擇相應的資料庫進入語法:use資料庫名;

3.檢視資料庫中的表語法:show tables;

4.檢視表的基本結構語句:desc 表名;

5.修改表名:alter table 舊表名 rename to 新錶名;

6.修改欄位的資料型別:alter table 表名 modify 欄位名 資料型別;

7.修改欄位名:alter table 表名 change 舊欄位名 新欄位名 新資料型別;

8.新增字段:alter table 表名 add 新欄位名 資料型別;

9.新增有完成約束條件的字段:alter table 表名 add 新欄位名 資料型別 約束;

10.在表的第一列新增乙個字段:alter table 表名 add 新欄位名 資料型別 first;

11.在表的指定列新增乙個字段:alter table 表名 add 新欄位名 資料型別 after 欄位名;

12.刪除字段:alter table 表名 drop 欄位名;

13.修改欄位的排列位置:alter table 表名 modify 欄位1 資料型別 first | after 欄位2;

14.更改表的儲存引擎:alter table 表名 engine=新引擎名;

15.刪除資料表:drop table [is exists] 表1,表2,表3...;

16.刪除被其他表關聯的主表:先刪除外來鍵約束,再刪表;

MySQL之修改資料表操作

mysql之修改資料表操作 1.mysql修改資料表 新增 刪除列 新增單列 alter table tbl name add column col name column definition first after col name 新增多列 alter table tbl name add c...

MySQL 修改資料表

修改資料表是指修改資料庫中已有資料表的結構。mysql 使用 alter table 語句修改表。mysql 通過 alter table 語句修改表名,語法規則如下 alter table 舊表名 rename to 新錶名 其中 to 為可選引數,使用與否均不影響結果。修改欄位的資料型別,就是把...

MySQL修改資料表

alter ignore table tb name alter spec,alter spec.alter specification add column create definition first after column name 新增新字段 add index index name i...