mysql alter修改資料庫表結構用法

來源:互聯網
上載者:User

1.alter動作表欄位

(1)增加欄位

  alter table 表名 add 欄位名 欄位類型;

  alter table student add name varchar(10);

(2)修改欄位

   alter table 表名 change 舊欄位名 新欄位名 欄位類型;

   alter table 表名 modify 欄位名 欄位類型;//修改欄位類型

   alter table student change name name varchar(20)not null default 'liming';//修改欄位類型 default後邊是

    欄位預設的值

   alter table student change name name1 varchar(20)not null default 'liming';//修改欄位名

(3)刪除欄位

   alter table 表名 drop 欄位名;

   alter table student drop name;

2.alter 索引操作

 (1)增加索引

    alter table 表名 add index 索引名 (欄位名1,欄位名2.....);

    alter table student add index stu_name(name);

  (2)刪除索引

     alter table 表名 drop index 索引名;

     alter table student drop index stu_name;

  (3)查看某個表的索引

     show index from 表名;

   (4)增加唯一限制條件的索引

     alter table 表名 add unique 索引名(欄位名);

 3.主鍵操作

    增加主鍵:

   alter table 表名 add primary key(欄位名);

   刪除主鍵:

   alter table 表名 drop primary key;(主鍵不是自動成長情況下)

    alter table 表名 modify 欄位 欄位類型, drop primary key;(主鍵是自動成長情況下)

  alter table 123 modify id int,drop primary key;

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.