반응형
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
- Tkinter
- list
- Apache
- string
- Redshift
- Mac
- matplotlib
- array
- gas
- PySpark
- 파이썬
- Excel
- math
- PANDAS
- numpy
- Google Spreadsheet
- django
- Github
- Kotlin
- Java
- SQL
- google apps script
- Python
- hive
- c#
- GIT
- Google Excel
- dataframe
- PostgreSQL
Archives
- Today
- Total
목록information_schema (1)
달나라 노트
Redshfit : information_schema, information_schema.tables, information_schema.columns (table list, column list)
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되는 대표적인 정보로는 아래..
SQL/Redshift
2022. 5. 24. 19:11