mysql修改表

來源:互聯網
上載者:User

表的結構如下:

mysql> show create table person;| person | CREATE TABLE `person` (  `number` int(11) DEFAULT NULL,  `name` varchar(255) DEFAULT NULL,  `birthday` date DEFAULT NULL) ENGINE=MyISAM DEFAULT CHARSET=utf8 |

刪除列:

ALTER TABLE person DROP COLUMN birthday; 

添加列:

ALTER TABLE person ADD COLUMN birthday datetime;

修改列,把number修改為bigint:

ALTER TABLE person MODIFY number BIGINT NOT NULL;

或者是把number修改為id,類型為bigint:

ALTER TABLE person CHANGE number id BIGINT;

 

添加主鍵:

ALTER TABLE person ADD PRIMARY KEY (id);

刪除主鍵:

ALTER TABLE person DROP PRIMARY KEY;

添加唯一索引:

ALTER TABLE person ADD UNIQUE name_unique_index (`name`);

為name這一列建立了唯一索引,索引的名字是name_unique_index.

 

添加普通索引:

ALTER TABLE person ADD INDEX birthday_index (`birthday`);

 

刪除索引:

ALTER TABLE person DROP INDEX birthday_index;ALTER TABLE person DROP INDEX name_unique_index;

 

禁用非唯一索引

ALTER TABLE person DISABLE KEYS;

ALTER TABLE...DISABLE KEYS讓MySQL停止更新MyISAM表中的非唯一索引。

啟用非唯一索引

ALTER TABLE person ENABLE KEYS;

ALTER TABLE ... ENABLE KEYS重新建立丟失的索引。

 

把表預設的字元集和所有字元列(CHAR, VARCHAR, TEXT)改為新的字元集:

ALTER TABLE person CONVERT TO CHARACTER SET utf8;

修改表某一列的編碼

ALTER TABLE person CHANGE name name varchar(255) CHARACTER SET utf8;

僅僅改變一個表的預設字元集

ALTER TABLE person DEFAULT CHARACTER SET utf8;

 修改表名

RENAME TABLE person TO person_other;

移動表到其他資料庫

RENAME TABLE current_db.tbl_name TO other_db.tbl_name;

 

 

 

 

 

相關文章

聯繫我們

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