標籤:style blog color 使用 io 資料 ar div cti
改變資料表的結構:
alter table tb_name action,[action,action](使用alter table 之前,需要查看資料表的當前定義,需要執行show create table 語句 )
alter table tb_name modify columns+資料類型
alter table tb_name change column_name column_new_name+資料類型
change 能夠改變表名和資料類型,modfy只能改變資料類型
你也可以改變字元集:alter table tb_name modify t char(20) character set usc2
對於資料列來說,當兩個資料列具有相同的資料列的時候,比較的時候速度會快許多
t1.name char(20)與t2.name char(15)比t1.name char(20)與t2.name char(20)的比較會更慢
改變儲存引擎:
alter table table_name engine=engine_name如果資料列包括blob資料列,那麼不能轉化為memory引擎,
因為memory引擎不支援blob,
當InnoDB定義外檢約束的時候,在轉換儲存引擎的時候,外鍵會丟失,只有InnoDB支援外鍵
重新命名一個資料表
(1)alter table tb1_name rename to new_tb1_name
(2)rename table tb1_name to new_tb1_name
alter table 一次只能修改一個資料表,但是rename ...to 可以是多個一起修改的:rename table t1 to t2,t2 to t3,...
如果在重新命名的時候加上資料庫的首碼,可以把資料表從一個資料庫遷移到另一個資料庫裡
alter table a.tb1_name rename to b.tb1_name或rename table a.tb1_name to b.tb1_name
mysql學習筆記 第六天