MySQL表字段操作

2021-08-20 15:07:45 字數 560 閱讀 5565

語法:

新增到末尾

alter

table 表名 add 欄位名,資料型別;

新增到開始:

alter

table 表名 add 欄位名 資料型別 first;

新增到制定位置:

alter

table 表名 add 欄位名 after 欄位名(會新增在這個欄位名的下面)

刪除字段:

alter

table 表名 drop 欄位名;

修改字段型別:

alter

table 表名 modify 欄位名 資料型別;

修改欄位名(非常用功能)

alter

table 表名 change 舊名 新名 資料型別;

修改表名:

alter

table 表名 rename 新名字

Oracle操作表,字段

0.建立表 create table table name as select from table name b 1.oracle 修改表名 alter table old table name rename to new table name 大寫為系統命令 2.oracle通過altertab...

Oracle表,字段,列操作

1 新增字段 alter table student add age number 5 2 修改字段 alter table student modify age number 10 alter table table2 rename column result to result2 3 刪除字段 ...

MySQL表字段加索引

新增普通索引 此時key型別為mul alter table table name add index column column 例如 alter table poicity add index delete flag delete flag 新增主鍵索引 primary key alter ta...