評論表定義
CREATE TABLE menagerie.bird (
bird_id INT NOT NULL AUTO_INCREMENT,
species VARCHAR(300) DEFAULT NULL COMMENT 'You can include genus, but never subspecies.',
INDEX idx_species (species) COMMENT 'We must search on species often.',
PRIMARY KEY (bird_id)
) ENGINE=InnoDB COMMENT 'This table was inaugurated on February 10th.';
在 COMMENT
之後使用 =
是可選的。 ( 官方檔案 )
與其他註釋不同,這些註釋與模式一起儲存,可以通過 SHOW CREATE TABLE
或 information_schema
檢索。