짧은하루

MariaDB 컬럼 코멘트 가져오기 본문

DataBase

MariaDB 컬럼 코멘트 가져오기

짧은하루 2022. 7. 8. 11:30

컬럼 코멘트 가져오기

SELECT
    table_name, column_name, column_comment
FROM
    information_schema.columns
WHERE
    table_schema = '디비 이름' AND table_name = '테이블 이름';
반응형

'DataBase' 카테고리의 다른 글

Mac) MySQL Workbench(워크벤치) 설치하기  (0) 2021.12.02
Comments