티스토리 뷰

RENAME

  • 테이블 명을 변경할 때 사용
-- rename table
show tables;
rename table test_table to test_table1;
show tables;

 

ALTER

  • 열과 관련된 수정을 할 때 사용
  • 열의 이름을 바꾸거나, 타입을 변경, 추가, 삭제 할 수 있다.
-- column TYPE 변경
desc test_table3;
alter table test_table3 modify data2 varchar(10000);
desc test_table3;

-- column 이름&속성 변경 **이름만 바꾸더라도 속성은 그대로 꼭 적어줘야 한다.
desc test_table3;
alter table test_table3 change data3 data30 float(100, 4);
alter table test_table3 change data30 data3 float(100, 4);
desc test_table3;

-- column을 추가한다. 이름과 형식을 적어줌
alter table test_table3 add data5 int;
desc test_table3;

-- column을 삭제한다.
alter table test_table3 drop data5;
desc test_table3;

 

DROP

  • 테이블을 삭제할 때 사용
  • drop table은 롤백할 수 없다.
-- 테이블 삭제
drop table test_table3;
show tables;
반응형
Comments
반응형
최근에 올라온 글
최근에 달린 댓글
Total
Today
Yesterday