반응형
목차
Mysql/MariaDB 테이블 조회
information_schema DB를 활용(절대 information_schema의 정보를 수정하면 안됨)
Mysql 혹은 MariaDB의 메타데이터 정보를 담고 있는 information_schema를 활용해서
다양하게 사용 가능(빈 테이블 조회 등)
-- 빈 테이블 조회
SELECT
TABLE_NAME AS 테이블명,
table_comment AS 코멘트,
table_rows AS 행
FROM information_schema.tables
WHERE
table_schema = '스키마명'AND table_rows <= 0;
-- 컬럼으로 테이블 조회
SELECT
TABLE_SCHEMA
,TABLE_NAME
,COLUMN_NAME
FROM INFORMATION_SCHEMA.COLUMNS
WHERE COLUMN_NAME='컬럼명';
반응형
'IT > DBMS' 카테고리의 다른 글
[MySQL/MariaDB]문자열 붙이기(concat, concat_ws) (0) | 2022.11.25 |
---|---|
[MySQL/MariaDB]'테이블명' doesn't exist (0) | 2022.11.23 |
[Cubrid]시스템 카탈로그(테이블, 컬럼 조회) (0) | 2022.11.22 |
[MySQL/MariaDB] Column 'xx' in where clause is ambiguous 에러 (0) | 2022.11.22 |
[MySQL/MariaDB] merge(값이 있으면 update, 아니면 insert)(feat. ON DUPLICATE KEY UPDATE...) (0) | 2022.11.22 |