SQL/Redshift

Redshfit : information_schema, information_schema.tables, information_schema.columns (table list, column list)

CosmosProject 2022. 5. 24. 19:11
728x90
반응형

 

 

 

information_schema를 이용하면 DB에 존재하는 table의 리스트 또는 column의 리스트 등 table에 대한 다양한 정보를 얻을 수 있습니다.

 

 

select  *
from information_schema.tables
;

 

위 쿼리를 돌리면 현재 DB에 존재하는 table의 list를 얻을 수 있습니다.

 

output되는 대표적인 정보로는 아래와 같은 것들이 있습니다.

 

- table이 속한 cluster 정보

- table의 schema

- table의 이름

 

 

 

 

 

 

select  *
from information_schema.columns
;

 

information_schema의 columns에는 테이블의 정보와 테이블에 속한 column의 정보까지 들어있습니다.

 

output되는 대표적인 정보로는 아래와 같은 것들이 있습니다.

 

- table이 속한 cluster 정보

- table의 schema 이름

- table의 이름

- table에 있는 column 이름

- 각 column의 data type

 

 

 

 

 

 

728x90
반응형