mysql 基本操作 alter

2022-05-06 02:27:07 字數 1295 閱讀 4898

檢視資料庫 show  databases;

新建資料庫 命令 create database 庫名字。

選擇資料庫 use  2016test;

建立表:create table 表名(欄位1,2,3....);

auto_increment 自增

primary key  主鍵

檢視表結構  : describe  表名

顯示表:

插入資料

查表

刪除欄位名:

alter table 表名 drop 欄位名稱;

增加表字段

alter table 表名 add 欄位名稱  型別;

修改表字段:

alter table 表明 change 欄位名 新欄位名  新字段型別;

修改字段型別

alter table  表名 modify 要修改的欄位名  新的字段型別;

檢視表引擎:

show create table 2016_test;

。。。。

修改表引擎:

alter table 2016_test engine=myisam;

ALTER 簡單操作 mysql

alter 語句 alter 語句用於在已有的表中新增 修改或刪除。刪除列 alter table 表名字 drop 列名稱 例如 刪除test111表中的age列 alter table test1111 drop age 新增列 新增到test1111表列,名為age,約束為not null 注...

mysql主庫執行alter操作

前幾日,遇到的問題,表資料量不是很大,研發人員,修改表結構,導致資料庫出現大量元資料鎖等待,由於是5.5版本的資料庫,對錶進行alter操作是要鎖表的。解決 show processlist 檢視資料庫出現大量元資料鎖等待。select from information schema.innodb ...

SQL語句操作ALTER

1 新增列 alter table table name add column name datatype 例如 alter table student add name char 50 在student表中新增name欄位 2 刪除列 alter table table name drop col...