一、字段注釋
1、獲取表注釋
select column_comment as comment from information_schema.columns where table_name ='表名稱
'and column_name =
'欄位名稱
'and table_schema =
'資料庫名稱
'
2、修改表注釋
altertable 表名稱 modify column 欄位名稱 字段型別 comment 注釋
二、表注釋
1、獲取表注釋
show table status from 資料庫名稱 like'表名稱
'
得到的是乙個陣列,取comment即可
2、修改表注釋
altertable 表名稱 comment 修改後的表的注釋
mysql 獲取表注釋 字段注釋
表注釋儲存在information schema.tables表內 show table status 獲取當前庫下的所有表資訊 包括注釋 select table comment from information schema.tables同上 字段注釋儲存在information schema....
mysql 修改表注釋 字段注釋 檢視與修改注釋
2018年5月23日 1 建立表的時候寫注釋 create table test1 field name int comment 欄位的注釋 comment 表的注釋 2 修改表的注釋 alter table test1 comment 修改後的表的注釋 3 修改欄位的注釋 alter table ...
MySQL追加注釋或者大量修改注釋
之前乙個專案比較倉促,開發給的建表語句沒有注釋.現在要補全注釋資訊.但是mysql後期追加注釋比較麻煩 需要使用modify語法。只要不小心寫錯一點,就可能導致表結構的變更,而不是注釋的變更.實驗表如下 create table t c1 int primary key auto increment...