개발관련기록/Servlet_JSP(14)
-
[MySQL]Alter 구문 관련 쿼리 예제
사용 예(Example)1. 테이블에 새로운 컬럼 추가 alter table tablename add column [추가할 컬럼명] [추가할 컬럼 데이타형] 2. 테이블에 컬럼타입 변경하기 alter table tablename modify column [변경할 컬럼명] [변경할 컬럼 타입] 3. 테이블에 컬럼이름 변경하기 alter table tablename change column [기존 컬럼명] [변경할 컬럼명] [변경할 컬럼타입] 4. 테이블에 컬럼 삭제하기 alter table tablename drop column [삭제할 컬럼명] 5. 테이블컬럼에 인덱스 주기 alter table tablename add index 인덱스명(인덱스를 줄 컬럼1 , 인덱스를 줄 컬럼2, ... ) 6. 테이..
2011.08.09 -
[Servlet / JSP] Mysql 13장 예제 쿼리문 적기
create table message_board ( boardId int not null auto_increment, groupId int not null, sequenceNo char(20) not null, registerDate datetime not null, referenceCount int not null, name varchar(20) not null, passwd varchar(10), title varchar(100), content text, primary key (boardId), index (sequenceNo) ); create table sequence_new_value ( sequence_name varchar(20) not null, newGroupValue int not n..
2011.08.09