具體方法:
1、建立表的時候,新增表名備註和字段備註create table `healerjean_comment` (
`id` bigint(20) not null auto_increment,
`name` varchar(32) not null comment '名字備註',
`email` varchar(64) not null,
`message` text ,
primary key (`id`),
key `index_name` (`name`)
) comment='表名備註' ;
2、表建立完成新增表名備註和字段備註alter table healerjean_comment comment='測試索引表';
alter table healerjean_comment modify name varchar(32) not null comment '名字備註'
3、檢視備註資訊show create table healerjean;
MySQL查詢備註資訊
在mysql下執行完下面這個建表語句後。如何從資料字典中,檢索出這個表的字段的相關資訊?drop table if exists test table create table test table test id int not null auto increment primary key co...
mysql索引知識備註
mysql索引分類 innodb和myisam預設的索引是btree索引 而mermory預設的索引是hash索引。myisam葉子節點儲存的是表的位址,所以說資料檔案和索引檔案是分開的,也稱為非聚集 innodb不同,主索引它的葉子節點儲存的並不是表的位址,而是資料。輔助索引葉子節點儲存的是主鍵的...
mysql 事件開啟備註
事件建立之後 1 檢查資料庫事件是否開啟,如果 event scheduler 等於 no表示開啟 select event scheduler show variables like event scheduler select event scheduler 2 開啟任務 事件 a set gl...