본문 바로가기

Table 변경& 삭제 ( Alter table table name rename new_table name) 본문

BF 2024/SQL

Table 변경& 삭제 ( Alter table table name rename new_table name)

jaegomhoji 2022. 3. 14. 20:45

** table의 이름을 mytable 에서 newtable로 변경해보자

alter table tablename 

rename newtablename;

 

** age라는 실수형 포맷을 가진 칼럼추가하기 

alter table tablename

add column age double; 

* desc ( describe ) table; 으로 확인하기 

 

** column 의 자료형 변경하기  ( alter ~ modify column ~ ) 

alter table tablename

modify column columnname type; 

 

** column 이름 변경하기

alter table tablename

change column old_column name new_columnname  new_datatype;

 

** column 삭제하기 

alter table tablename

drop column columnname;

 

** table 삭제하기

drop table tablename;

Comments