반응형
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
- PANDAS
- GIT
- c#
- Excel
- list
- string
- Google Spreadsheet
- array
- django
- math
- PostgreSQL
- Redshift
- dataframe
- Python
- Apache
- google apps script
- SQL
- Kotlin
- numpy
- gas
- PySpark
- Java
- Mac
- 파이썬
- Github
- hive
- Google Excel
- matplotlib
- Tkinter
Archives
- Today
- Total
달나라 노트
Redshift : pg_tables (table 종류, owner 종류 추출) 본문
728x90
반응형
select *
from pg_tables
;
Redshift에서는 pg_table를 이용하면 database에 있는 table의 종류와 각 tabe의 owner를 알 수 있습니다.
위 쿼리의 output column은 아래 링크를 보면 됩니다.
https://www.postgresql.org/docs/8.0/view-pg-tables.html
FYI
https://docs.aws.amazon.com/redshift/latest/dg/c_join_PG.html
728x90
반응형
'SQL > Redshift' 카테고리의 다른 글
Redshift : last_day() (특정 날짜가 속한 월의 가장 마지막 날짜 return) (0) | 2023.02.23 |
---|---|
Redshift : table 생성 일시 추출, table 생성 시점 추출 (0) | 2023.01.31 |
Redshift : set timezone (timezone 설정, 시간대 설정) (0) | 2023.01.31 |
Redshift : alter table ~ drop column ~ (column 삭제, column 제거) (0) | 2022.10.19 |
Redshift : alter table ~ add ~ (column 추가, column 추가하기) (0) | 2022.10.19 |
Comments