DB 전체 테이블 코멘트 조회
SELECT table_name, table_comment
FROM information_schema.tables
WHERE table_schema = '디비명' AND table_name = '테이블명';
DB 특정 테이블 컬럼 코멘트 조회
SELECT table_name, column_name, column_comment
FROM information_schema.columns
WHERE table_schema = '디비명' AND table_name = '테이블명';
'자율 학습 > 학습' 카테고리의 다른 글
| NVM 설치, Node js 버전 관리 (설치, 변경, 삭제) (0) | 2023.08.04 |
|---|---|
| 구글, 크롬 (0) | 2023.08.03 |
| JAVA 버전 변환 방법 (8, 17 두 가지 설치) (0) | 2023.07.11 |
| JSON null 체크 (0) | 2023.02.16 |
| 함수(function) vs 메서드(method) (0) | 2023.02.15 |