*테이블 조회

SELECT 
    TABLE_SCHEMA,table_name, table_comment
FROM
    information_schema.tables
WHERE
    table_comment like '%%';

 

*칼럼조회

SELECT
    table_name, column_name, column_comment
FROM
    information_schema.columns
WHERE
    column_comment like '%처리량%';

+ Recent posts