반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- math
- string
- django
- PANDAS
- Mac
- Google Excel
- Redshift
- dataframe
- PySpark
- GIT
- c#
- Java
- Python
- hive
- 파이썬
- list
- gas
- Apache
- Github
- matplotlib
- PostgreSQL
- array
- SQL
- google apps script
- Tkinter
- numpy
- Google Spreadsheet
- Kotlin
- Excel
Archives
- Today
- Total
달나라 노트
Redshfit : information_schema, information_schema.tables, information_schema.columns (table list, column list) 본문
SQL/Redshift
Redshfit : information_schema, information_schema.tables, information_schema.columns (table list, column list)
CosmosProject 2022. 5. 24. 19:11728x90
반응형
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
반응형
'SQL > Redshift' 카테고리의 다른 글
Comments