mysql檢視表注釋和字段注釋的方法

2022-01-10 17:38:11 字數 706 閱讀 5849

1、取字段注釋

select column_name 列名, data_type 字段型別, column_comment 字段注釋

from information_schema.columns

where table_name = 'companies'##表名

and table_schema = 'testhuicard'##資料庫名

and column_name like 'c_name'##欄位名

2、取得表注釋

select table_name 表名,table_comment 表注釋 from information_schema.tables where table_schema = 'testhuicard' ##資料庫名

and table_name like 'companies'##表名

參考mysql手冊:23.1. information_schema表

3、取得某資料庫下所有表的注釋

$tt = mysql_query("show table status;");

$table_info=array();

while($re = mysql_fetch_array($tt,mysql_assoc)) ......

更新自增值 alter table [table]members auto_increment=10000

本文**

MySQL 新增和檢視表注釋 字段注釋

建立表的時候寫注釋 create table student name varchar 20 comment 欄位的注釋 age int comment 欄位的注釋 comment 表的注釋 修改表的注釋 alter table student comment 修改後的表的注釋 修改欄位的注釋 al...

檢視文章 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 修改欄位的注釋...