일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Google Spreadsheet
- Excel
- PANDAS
- 파이썬
- SQL
- c#
- PostgreSQL
- Python
- Mac
- django
- Kotlin
- list
- hive
- GIT
- math
- Google Excel
- string
- Github
- array
- dataframe
- google apps script
- numpy
- Apache
- PySpark
- Redshift
- gas
- matplotlib
- Tkinter
- Java
- Today
- Total
목록SQL (115)
달나라 노트
SQL을 다루다보면 어떤 table의 정보가 필요한 경우가 있습니다. 여기서 말하는 정보란 table에 존재하는 column의 종류, column의 자료형(data type), column에 들어갈 수 있는 데이터의 최대 크기 등을 의미합니다. 이러한 정보들을 DDL(Data Definition Language, Data Description Language)이라고 합니다. SQL에서 DDL이란 보통 table의 이름, table에 존재하는 column 종류, 각 column의 data type, column들이 수용할 수 있는 데이터의 최대 크기, distinct key, sort key 등 table의 특징에 관한 정보를 담은 내용을 의미합니다. (더 자세하고 정확히 말하면 위 설명보다 더 상세한 정..
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되는 대표적인 정보로는 아래..
pg_catalog를 이용하면 DB에 있는 Schema list를 얻을 수 있습니다. select * from pg_catalog.pg_namespace ; pg_catalog의 pg_namespace에서 select를 하면 schema list와 schema의 owner id를 얻을 수 있습니다. select * from pg_catalog.pg_user ; pg_catalog.pg_user에는 user 정보가 저장되어있습니다. pg_user의 usesysid 컬럼과 pg_namespace의 nspowner 컬럼이 user id를 의미하므로 이 두 컬럼을 join하서 사용하면 됩니다.
Presto에서 날짜나 시간을 더하고 빼기 위해선 interval 함수를 사용하면 됩니다. select current_date, --> 2022-01-14 timestamp '2022-01-14 15:23:43' + interval '1' second, --> 2022-01-14 15:23:44 timestamp '2022-01-14 15:23:43' - interval '1' second, --> 2022-01-14 15:23:42 timestamp '2022-01-14 15:23:43' + interval '1' minute, --> 2022-01-14 15:24:43 timestamp '2022-01-14 15:23:43' - interval '1' minute, --> 2022-01-14 15:2..