반응형
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
- gas
- Mac
- SQL
- Kotlin
- Google Spreadsheet
- Tkinter
- array
- django
- 파이썬
- hive
- dataframe
- Excel
- google apps script
- numpy
- matplotlib
- PANDAS
- string
- Redshift
- Java
- c#
- PySpark
- list
- GIT
- PostgreSQL
- math
- Github
- Python
- Apache
- Google Excel
Archives
- Today
- Total
달나라 노트
Redshift : alter table ~ add column (table에 column 추가하기) 본문
SQL/Redshift
Redshift : alter table ~ add column (table에 column 추가하기)
CosmosProject 2024. 7. 25. 20:03728x90
반응형
alter table ~ add ~를 이용하면 table에 column을 추가할 수 있습니다.
Syntax
alter table table_name add column_name datatype
위처럼 원하는 table_name에 datatype을 가진 column_name을 추가할 수 있습니다.
alter table test_schema.test_table
add price bigint
;
test_schema.test_tabe이라는 table에
datatype이 bigint인 price라는 column을 추가한다.
라는 의미입니다.
728x90
반응형
'SQL > Redshift' 카테고리의 다른 글
Comments