\
드롭 하지 않고 테이블을 수정 하기 위해 필요한 명령어
복붙 가자
alter table 테이블이름 add
(컬럼명 자료형 [제약조건] , 컬럼명 자료형 [제약조건] , ....)
alter table 테이블이름 drop column 컬럼이름
--여러개 테이블 칼럼 삭제
alter table de_tset dop column (gender,etc);
alter table 테이블이름 drop column 컬럼이름
alter table 테이블이름 rename column 기존컬럼명 to 변경컬럼명
5.테이블 삭제
drop table 테이블이름