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'##表名
參考http://dev.mysql.com/doc/refman/5.1/zh/information-schema.html.
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取得資料庫所有表名和字段注釋
1 取字段注釋 select column name 列名,data type 字段型別,column comment 字段注釋 from information schema.columns where table name companies 表名 and table schema testhu...
獲得資料庫中所有的表
在資料庫中一般都會有乙個系統表來記錄下所有的使用者表或檢視,儲存過程等等的.名字就叫sysobjects.所有要查詢出所有的表可以用以下語句 sql2000 select from sysobjects where xtype u或 v 或 p access select from msysobje...
求資料庫所有表名和列名
isnull函式 需要個引數,如果第乙個引數為空,則賦值第二個引數。select 空格代表as關鍵字 case when a.colorder 1 then d.name else end 表名,a.colorder 字段序號,a.name 欄位名,case when columnproperty ...