3.DataBase/mysql

mysql 테이블 정보 검색 컬럼 정보 검색

어드민제로 2013. 8. 23. 11:58

mysql Table 정보검색 및 column정보 검색


1 테이블 정보검색.

select * 

from INFORMATION_SCHEMA.tables 

where table_schema='계정명';

=> show tables;


2. 컬럼명 검색.

select * 

 from INFORMATION_SCHEMA.columns 

where table_schema='계정명' 

    and table_name='테이블명' 

 order by ordinal_position;

=> show full columns from 테이블명 ;