반응형
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
- Github
- Excel
- GIT
- dataframe
- Tkinter
- Google Excel
- Python
- Redshift
- PySpark
- c#
- string
- django
- Java
- math
- hive
- PANDAS
- google apps script
- SQL
- matplotlib
- array
- 파이썬
- Kotlin
- numpy
- Apache
- PostgreSQL
- list
- Google Spreadsheet
- Mac
- gas
Archives
- Today
- Total
목록drop column (1)
달나라 노트
Redshift : alter table ~ drop column ~ (column 삭제, column 제거)
alter table 구문을 이용해서 table에 존재하는 column을 삭제할 수 있습니다. Syntax alter table (table_name) drop column (column_name) (table_name) = 변경 사항을 적용할 table 이름입니다. (column_name) = 삭제할 column의 이름입니다. 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.tes..
SQL/Redshift
2022. 10. 19. 19:50