반응형
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 |
Tags
- django
- PostgreSQL
- dataframe
- gas
- google apps script
- Python
- Redshift
- Google Excel
- matplotlib
- Mac
- array
- PANDAS
- PySpark
- 파이썬
- Kotlin
- Tkinter
- Java
- hive
- numpy
- Google Spreadsheet
- Github
- Apache
- c#
- Excel
- math
- GIT
- string
- list
- SQL
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' 카테고리의 다른 글
Redshift : create procedure, call procedure (procedure의 선언과 호출) (0) | 2025.03.15 |
---|---|
Redshift : Week truncate (주차별로 truncate하기, 일요일 시작 주차 truncate) (0) | 2024.07.25 |
Redshift : pg_users (Redshift user list 추출) (0) | 2024.07.12 |
Redshift : has_schema_privilege (특정 user의 schema 권한 보유 여부 파악하기, schema 권한 보유 여부) (0) | 2024.07.12 |
Redshift : has_table_privilege (특정 user의 table 권한 보유 여부 파악하기) (0) | 2024.07.12 |
Comments