개발/Database
MySQL Table Schema 확인
내가지니
2012. 5. 17. 22:29
##MySQL에서 테이블 생성 스크립트를 보고 싶을때 사용
show create table [table명]
##MySQL에서 DB에 생성된 모든 테이블을 보고 싶을때
show tables
like절 사용가능
show tables like '%tba_%'
[출처] [MySQL] Table Schema 보기|작성자 juner84