-- 取得 Table 註解
select table_name, table_comment
from information_schema.tables
where table_comment <> ''
and substring(table_comment, 1, 6) <> 'InnoDB'
;
-- 取得 Column 註解
select table_name, column_name, column_comment
from information_schema.columns
where column_comment <> ''
;
沒有留言:
張貼留言