查詢資料庫所有表和字段及其注釋(mysql)

2022-06-26 15:27:15 字數 597 閱讀 3734

查詢某個庫所有表

select * from information_schema.tables

where table_schema = '資料庫'

#查詢某個庫所有表的字段

select * from information_schema.columns

where table_schema = '資料庫'

#查詢所有表的注釋和字段注釋

select

a.table_name 表名,

a.table_comment 表說明,

b.column_name 欄位名,

b.column_comment 字段說明,

b.column_type 字段型別,

b.column_key 約束

from

information_schema. tables a

left join information_schema. columns b on a.table_name = b.table_name

where

a.table_schema = '資料庫'

order by

a.table_name

Oracle資料庫查詢所有表 欄位和注釋

1.表獲取 對於獲取表資訊,可供選擇的表有 select from user tables 當前使用者的表 select from all tables 所有使用者的表 select from dba tables 包括系統表 select from dba tables where owner t...

sql查詢資料庫注釋(表及表注釋,欄位及字段注釋)

1.要查詢資料庫下所有表名以及表注釋 查詢資料庫 mammothcode 所有表注釋 select table name,table comment from information schema.tables where table schema mammothcode 2.要查詢表字段的注釋 查...

mysql取得資料庫所有表名和字段注釋

1 取字段注釋 select column name 列名,data type 字段型別,column comment 字段注釋 from information schema.columns where table name companies 表名 and table schema testhu...