본문 바로가기
데이터베이스/MySQL

[mysql] 테이블 목록 조회

by 언제나초심. 2012. 9. 26.
반응형

select * from information_schema.`TABLES`

where TABLE_SCHEMA = '디비명';


혹은


select table_name from information_schema.`TABLES`

where TABLE_SCHEMA = '디비명';

반응형