[MySQL] 테이블 생성, 변경, 삭제, 컬럼 추가

GilLog·2021년 7월 17일
0

DataBase

목록 보기
19/25

테이블 생성

create table TB_NAME(id mediumint(9), name varchar(20));

테이블명 수정

alter table TB_NAME rename TB_NEW_NAME;

테이블 삭제

drop table TB_NAME;

컬럼 추가

alter table TB_NAME add COLUMN_NAME TYPE OPTION; 

//alter table TB_NAME add NEW_COLUMN varchar(100) not null default 'NONE'; 

컬럼 삭제

alter table TB_NAME drop COLUMN_NAME;

컬럼명 수정

alter table TB_NAME change COLUMN_NAME COLUMN_NEW_NAME varchar(12);

컬럼 타입 수정

alter table TB_NAME modify COLUMN_NAME TYPE

// alter table TB_NAME modify COLUMN_NAME varchar(14);
profile
🚀 기록보단 길록을 20.10 ~ 22.02 ⭐ Move To : https://gil-log.github.io/

0개의 댓글