alter table
페이지 정보

본문
* 새로운 필드를 생성할 때
alter table g4_write_tech add wr_last varchar(19) not null after wr_datetime;
alter table g4_member add mb_no int(11) not null auto_increment first, add primary key (mb_no);
alter table g4_member add mb_open_date date NOT NULL default '0000-00-00' after mb_open;
* 생성된 필드의 위치를 바꿀 때
alter table g4_write_tech modify wr_last varchar(19) after wr_datetime;
* 생성된 필드의 타입을 바꿀 때
alter table g4_write_tech modify wr_2 text;
* 필드를 삭제할 때
alter table g4_write_tech drop wr_last1;
* null 값 조정
alter table g4_write_tech modify wr_last varchar(19) not null;
* index 값 변경
alter table g4_member ADD UNIQUE INDEX (mb_id);
alter table g4_write_tech add wr_last varchar(19) not null after wr_datetime;
alter table g4_member add mb_no int(11) not null auto_increment first, add primary key (mb_no);
alter table g4_member add mb_open_date date NOT NULL default '0000-00-00' after mb_open;
* 생성된 필드의 위치를 바꿀 때
alter table g4_write_tech modify wr_last varchar(19) after wr_datetime;
* 생성된 필드의 타입을 바꿀 때
alter table g4_write_tech modify wr_2 text;
* 필드를 삭제할 때
alter table g4_write_tech drop wr_last1;
* null 값 조정
alter table g4_write_tech modify wr_last varchar(19) not null;
* index 값 변경
alter table g4_member ADD UNIQUE INDEX (mb_id);
- 이전글특정 db의 특정 table에서 원하는 값만 덤프받기 19.05.25
- 다음글onLoad 시 특정 javascript 호출(html 파일에서도 됨) 19.05.25
댓글목록
등록된 댓글이 없습니다.
