我們知道,MySQL數據庫常常與PHP結合來開發出功能強大的應用程序。那麼對於我們初學PHP編程的人來說,就很有必要了解一些MySQL數據庫的簡單操作了。本文我們對MySQL數據庫使用alter table語句來修改表結構的知識進行了介紹,接下來就讓我們來一起了解一下這部分內容。
1. 增加列
alter table tbl_name add col_name type
例如, 給pet的表增加一列 weight,
mysql>alter table pet add weight int;
2. 刪除列
alter table tbl_name drop col_name
例如, 刪除pet表中的weight這一列
mysql>alter table pet drop weight;
3. 改變列
分為改變列的屬性和改變列的名字
改變列的屬性——方法1:
alter table tbl_name modify col_name type
例如,改變weight的類型
mysql>alter table pet modify weight varchar(30);
改變列的屬性——方法2:
alter table tbl_name change old_col_name col_name type
例如,改變weight的類型
alter table pet change weight weight varchar(30);
改變列的名字:
alter table tbl_name change old_col_name col_name
例如改變pet表中weight的名字:
mysql>alter table pet change weight wei;
4. 改變表的名字
alter table tbl_name rename new_tbl
例如, 把pet表更名為animal
mysql>alter table pet rename animal;
關於MySQL數據庫alter table改變表結構的知識就介紹到這裡了,接下來我們還會介紹一些MySQL數據庫的簡單操作方法,希望本次的介紹能夠對您有所收獲吧!