表注釋儲存在information_schema.tables表內
show table status
//獲取當前庫下的所有表資訊(包括注釋)
select table_comment from information_schema.tables同上
字段注釋儲存在information_schema.columns表內
show full fields from
表名 //獲取表字段詳細資訊,(包括注釋)
select column_comment from information_schema.columns where table_name = 'admin'同上
mysql 表注釋和字段注釋
1 建立表的時候寫注釋 create table test1 field name int comment 欄位的注釋 comment 表的注釋 2 修改表的注釋 alter table test1 comment 修改後的表的注釋 3 修改欄位的注釋 alter table test1 modif...
檢視文章 mysql 表注釋和字段注釋
參考文件不太給力啊,表注釋和字段注釋的資料不全。1 建立表的時候寫注釋 create table test1 field name int comment 欄位的注釋 comment 表的注釋 2 修改表的注釋 alter table test1 comment 修改後的表的注釋 3 修改欄位的注釋...
檢視文章 mysql 表注釋和字段注釋
參考文件不太給力啊,表注釋和字段注釋的資料不全。1 建立表的時候寫注釋 create table test1 field name int comment 欄位的注釋 comment 表的注釋 2 修改表的注釋 alter table test1 comment 修改後的表的注釋 3 修改欄位的注釋...