반응형
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
- matplotlib
- hive
- Tkinter
- Apache
- numpy
- PySpark
- SQL
- Google Spreadsheet
- array
- PostgreSQL
- math
- Github
- list
- 파이썬
- Java
- PANDAS
- google apps script
- string
- django
- Excel
- Mac
- Kotlin
- Python
- Google Excel
- c#
- Redshift
- GIT
- gas
- dataframe
Archives
- Today
- Total
목록if not exists (1)
달나라 노트
Redshift : create table, drop table (테이블 생성하고 삭제하기)
create table test_schema.test_table ( col1 varchar(max), col2 bigint(max), col3 varchar(max) ) ; create table은 위처럼 테이블을 생성시킬 수 있도록 합니다. 위 테이블은 col1, col2, col3라는 3개의 column을 가질 것이고, 각 컬럼에 들어갈 값들의 datatype은 순서대로 varchar(문자), bigint(정수), varchar(문자)입니다. create table if not exists test_schema.test_table ( col1 varchar(max), col2 bigint(max), col3 varchar(max) ) ; 또한 if not exists라는 옵션을 추가할 수도 있습니다...
SQL/Redshift
2021. 1. 21. 20:52