[Servlet / JSP] Mysql 13장 예제 쿼리문 적기
2011. 8. 9. 19:28ㆍ개발관련기록/Servlet_JSP
반응형
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 null,
primary key (sequence_name)
);
insert into sequence_new_value values ('newBoardGroupNo', 0);
create table imgfileinfo(
no int not null auto_increment,
boardId int not null ,
encodedFileName text not null,
filePath text not null,
saveFolder varchar(45) not null,
systemFileName text not null,
originalFileName text not null,
originalImgFile text,
thumbnailImgFile text,
primary key (no) ,
constraint fk_boardId foreign key( boardId )
references message_board (`boardId`)
on delete cascade
on update cascade
);
반응형
'개발관련기록 > Servlet_JSP' 카테고리의 다른 글
Java 설치 및 환경설정 관련 (0) | 2012.06.05 |
---|---|
[JSP] DB의 BLOB 타입으로 저장된 이미지를 출력해 보자. (0) | 2012.04.04 |
[JSP]Spring Web (0) | 2012.04.04 |
[Download] 한글 Putty 다운로드 (0) | 2011.11.30 |
[MySQL]Alter 구문 관련 쿼리 예제 (0) | 2011.08.09 |