728x90
반응형
SMALL
해당 DB의 특정 테이블 comment 조회)
SELECT
table_name, table_comment
FROM
information_schema.tables
WHERE
table_schema = 'db명' AND table_name = '테이블 이름'; -- AND 뒤를 빼면 해당 DB의 전체 테이블 코멘트
특정 DB의 특정 테이블 컬럼 comment 조회)
SELECT
table_name, column_name, column_comment
FROM
information_schema.columns
WHERE
table_schema = 'DB 이름' AND table_name = '테이블 이름';
필요한 뒷부분은 AND 조건 더 걸어서 알아서~
728x90
반응형
LIST
'MySQL' 카테고리의 다른 글
[오류] mysql 이모지 com.mysql.jdbc.MysqlDataTruncation: Data truncation: Incorrect string value: '\xF0... (0) | 2023.03.14 |
---|---|
mysql mybatis 다중 insert 처리하기 (0) | 2023.03.14 |
키 열 정보를 반환하지 않는 SelectCommand에 대해서는 UpdateCommand에 대한 동적 SQL 생성이 지원되지 않습니다. - 오류 해결 (0) | 2023.03.13 |
sql에서 전화번호 하이픈 적용 (0) | 2023.03.13 |
MYSQL - SQL로 나이(age) 계산하기 (0) | 2023.03.12 |