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