반응형
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
- hive
- list
- google apps script
- dataframe
- django
- PostgreSQL
- Redshift
- Python
- gas
- 파이썬
- math
- Apache
- Java
- PySpark
- array
- SQL
- Mac
- c#
- Tkinter
- string
- Google Excel
- Kotlin
- Github
- Google Spreadsheet
- matplotlib
- numpy
- GIT
- Excel
- PANDAS
Archives
- Today
- Total
달나라 노트
Redshift : alter table ~ add ~ (column 추가, column 추가하기) 본문
SQL/Redshift
Redshift : alter table ~ add ~ (column 추가, column 추가하기)
CosmosProject 2022. 10. 19. 19:43728x90
반응형
alter table 구문을 이용해서 table에 새로운 컬럼을 추가해봅시다.
Syntax
alter table (table_name) add (column_name) (data_type)
(table_name) = 변경 사항을 적용할 table 이름입니다.
(column_name) = 새롭게 추가할 column의 이름입니다.
(data_type) = 새롭게 추가할 column의 data type입니다.
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.test_table
add col5 varchar(360)
;
위 쿼리를 실행하면 varchar(360) type인 col5라는 이름의 column이 test_schema.test_table 테이블에 추가됩니다.
show table test_schema.test_table;
-- Result
CREATE TABLE test_sch.test_table (
col1 bigint ENCODE az64,
col2 character varying(60) ENCODE lzo,
col3 date ENCODE az64,
col4 timestamp without time zone ENCODE az64,
col5 character varying(360) ENCODE lzo
)
DISTSTYLE AUTO;
잘 추가되었는지 보기 위해 show table 구문을 이용해서 table의 정보를 보면 위와 같습니다.
col5가 추가된 것을 볼 수 있으며 col5의 data type은 varchar(= varying character)이며 최대 길이가 360입니다.
728x90
반응형
'SQL > Redshift' 카테고리의 다른 글
Comments