close
-- 資料表註解
select table_schema, table_name, table_comment
from information_schema.tables
where table_schema='資料庫名稱';
-- 資料欄位註解
select table_name, column_name, column_type, column_key, extra, column_comment
from information_schema.columns
where table_schema='資料庫名稱';
全站熱搜
留言列表