MySQL 테이블 COMMENT 확인

MySQL TABLE_COMMENT 확인
MySQL 테이블 주석 보기

1 방법[ | ]

sql
Copy
SELECT TABLE_COMMENT FROM information_schema.tables 
WHERE table_schema = 'DB명' 
AND table_name = '테이블명'

2 같이 보기[ | ]