[DEV SQL] 9. [MySQL, MariaDB] 스키마 내 테이블 및 컬럼 정보 select


MySQL에서 스키마 내 테이블 및 컬럼 정보 select



스키마 내 테이블 정보 select

select
	*
from 
	INFORMATION_SCHEMA.tables 
where
	table_schema='tst_schemaName';



테이블 정보 select

select
    *
from
    information_schema.columns
where
    table_schema = 'tst_schemaName' and table_name = 'board';
show full columns from tst_schemaName.board;