SQL/Redshift

Redshift : alter table ~ rename column ~ (column 이름 변경, column 이름 바꾸기)

CosmosProject 2022. 10. 19. 19:33
728x90
반응형

 

 

 

alter table 구문을 이용하면 table에 존재하는 column의 이름을 바꿀 수 있습니다.

 

 

Syntax

alter table (table_name) rename column (original_column_name) to (new_column_name)

 

(table_name) = 변경 내용을 적용할 table 이름

 

(original_column_name) = 이름을 변경할 기존의 column 이름

 

(new_column_name) = 변경할 새로운 column 이름

 

 

 

 

 

 

alter table test_schema.test_table
rename column col3 to dt_col;

 

위 예시에 있는 alter table 구문을 실행하면 test_schema.test_table에 있는 col3 컬럼 이름이 dt_col로 바뀌게 됩니다.

 

 

 

 

 

 

728x90
반응형