아래 SQL 내용중 table_schema 항목을 환경에 맞춰 변경하여 적용

 

1) 테이블 이름과 comment확인

select table_name, table_comment from tables where table_schema = 'test';

2) 테이블 컬럼별 상세 내용 확인
select table_name, 
       (select table_comment from tables t where c.table_schema = t.table_schema and c.table_name = t.table_name),
       ORDINAL_POSITION, COLUMN_NAME, COLUMN_COMMENT, column_TYPE
from columns c
where table_schema = 'test'
order by table_name, ORDINAL_POSITION
into outfile '/tmp/test.csv'
fields terminated by '^' escaped by '\\' lines terminated by '\n' ;

'RDB > MySQL' 카테고리의 다른 글

mysql data dump 백업  (0) 2019.10.25
mysql metalock 관리  (0) 2019.10.14
mariabackup script  (0) 2019.04.22
custom 암/복호화 procedure  (0) 2019.04.19
custom mysql 암/복호화 함수  (0) 2019.04.17

+ Recent posts