mysql學習筆記 第六天

來源:互聯網
上載者:User

標籤: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學習筆記 第六天

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.