1. 要查詢資料庫下所有表名以及表注釋
/* 查詢資料庫 『mammothcode』 所有表注釋 */
select table_name,table_comment
from information_schema.
tables
where table_schema=
'mammothcode'
;
2. 要查詢表字段的注釋/* 查詢資料庫 『mammothcode』 下表 『t_adminuser』 所有字段注釋 */
select column_name,column_comment
from information_schema.
columns
where table_name=
't_adminuser'
and table_schema=
'mammothcode'
3. 一次性查詢資料庫下表注釋以及對應表字段注釋/* 查詢資料庫 "mammothcode" 下表注釋以及對應表字段注釋 */
select t.table_name,t.table_comment,c.column_name,c.column_type,c.column_comment
from information_schema.
tables t,information_schema.
columns c
where c.table_name=t.table_name and t.
`table_schema`
='mammothcode'
sql查詢所有表名及注釋
oracle查詢使用者下的所有表 select from all tab comments 查詢所有使用者的表,檢視等 select from user tab comments 查詢本使用者的表,檢視等 select from all col comments 查詢所有使用者的表的列名和注釋.se...
MySQL資料庫裡查詢表注釋 表字段注釋資訊
一 查詢資料庫和資料表資訊 information schema 是mysql自帶資料庫,看作資訊資料庫,並且唯讀。information schema.tables 提供了關於資料庫中的表的資訊,屬於那個資料庫例項 table schema information schema.columns 提...
sql給表增加欄位及注釋
增加單個欄位及注釋 alter table 表名 add欄位名int 11 default null comment 注釋 增加多個欄位及注釋 alter table 表名 add 欄位名int 11 default null comment 注釋 欄位名varchar 255 default nu...