Mysql

테이블의 필드 추가 방법.

Machine_웅 2018. 3. 21. 14:41
728x90
반응형

alter table 테이블명 add 새로추가할필드명과 타입 after 위치;

 

예시

alter table UserId add Status int after userId;

 

 

 UserId 테이블에 Status 를 int형으로 새로 추가할건데 위치는 userId 다음에 만든다.

728x90
반응형