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;
'BF 2024 > SQL' 카테고리의 다른 글
DML , 데이터 조작어 ( < Select > , Insert , Update, Delete ) (0) | 2022.03.14 |
---|---|
DML , 데이터 조작어 ( Select < Insert > Update, Delete ) (0) | 2022.03.14 |
Table 생성하기 (0) | 2022.03.14 |
User 권한 관리 ( show grants for ~ , Grant/revoke all on db.* to ~ ) (0) | 2022.03.14 |
User 관리 ( 조회, create / drop user ) (0) | 2022.03.14 |
Comments