评论表定义
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
检索。