일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Tkinter
- Github
- c#
- array
- Java
- Apache
- PANDAS
- google apps script
- django
- matplotlib
- Google Excel
- hive
- math
- numpy
- Excel
- string
- list
- gas
- Python
- Mac
- PostgreSQL
- GIT
- SQL
- Redshift
- dataframe
- Kotlin
- 파이썬
- Google Spreadsheet
- PySpark
- Today
- Total
목록SQL (115)
달나라 노트
Table의 생성 시점을 보기 위해선 아래 query를 실행하면 됩니다. select nspname as schema_name , relname as table_name , relcreationtime as creation_time from pg_class_info as pci -- left join pg_namespace as pns on pns.oid = pci.relnamespace -- where pci.reltype != 0 and pns.nspname = 'schema_name' and pci.relname = 'table_name' ;
select *from pg_tables; Redshift에서는 pg_table를 이용하면 database에 있는 table의 종류와 각 tabe의 owner를 알 수 있습니다. 위 쿼리의 output column은 아래 링크를 보면 됩니다.https://www.postgresql.org/docs/8.0/view-pg-tables.html pg_tablesThe view pg_tables provides access to useful information about each table in the database. Table 41-37. pg_tables Columns Name Type References Description schemaname name pg_namespace.nspname name ..
set timezone syntax를 이용하면 특정 지역에 대한 시간대를 설정할 수 있습니다. 즉, 서버에 기본으로 적용되어있는 시간대를 무시하고 내가 설정한 시간대를 이용할 수 있습니다. Syntax set timezone to 'area' area는 원하는 지역의 이름을 의미합니다. set timezone to 'Asia/Seoul'; 위 구문을 실행하면 Asia의 Seoul로 timezone이 설정됩니다. set timezone to 'America/New_York' 위 구문은 America의 New_York으로 timezone을 설정합니다. set timezone to default; 위 구문은 system default값으로 timezone을 설정하며 보통 UTC를 의미합니다. 이렇게 timez..
alter table 구문을 이용해서 table에 존재하는 column을 삭제할 수 있습니다. Syntax alter table (table_name) drop column (column_name) (table_name) = 변경 사항을 적용할 table 이름입니다. (column_name) = 삭제할 column의 이름입니다. create table test_schema.test_table ( col1 bigint, col2 varchar(60), col3 date, col4 timestamp ) ; 테스트를 위해 위처럼 test_schema.test_table을 생성합시다. column은 col1, col2, col3, col4 총 4개가 존재합니다. alter table test_schema.tes..