#--- 테이블별 전체 컬럼정보 조회
SELECT
T.table_name
, C.column_name
, C.column_comment
, C.ordinal_position
, C.column_type
, C.is_nullable
, C.column_default
, C.column_key
FROM
information_schema.TABLES AS T
INNER JOIN
information_schema.COLUMNS AS C
ON
T.table_schema =DATABASE()
AND T.table_name = C.table_name
ORDER BY T.table_name. C.column_position;
'MySQL MariaDB > DB,Table 정보' 카테고리의 다른 글
MySQL / MariaDB 해당 테이블의 컬럼(Key)을 참조하고 있는 테이블 & 컬럼 정보. (0) | 2021.08.13 |
---|---|
MySQL / MariaDB foreign key _참조된 table, columns 조회 (0) | 2021.08.13 |
MySQL / MariaDB foreign key :제약 조건 조회 (0) | 2021.08.13 |
MySQL / MariaDB primary, foreign key 조회 (0) | 2021.08.13 |
MySQL / MariaDB_시퀀스(Sequence) 생성,조회,다음값 출력,특정번호 재시작. (0) | 2021.08.06 |
MySQL / MariaDB. information_schema.STATISTICS. 인덱스 정보 조회. (0) | 2021.08.05 |
MySQL/MariaDB 버전(Version) 정보 확인. (0) | 2021.08.05 |
MySQL/MariaDB 데이터를 파일(CSV)로 출력하기. (0) | 2021.08.05 |
댓글