drop table board;
create table board(
num number not null primary key,
writer varchar2(10) not null,
email varchar2(10),
subject varchar2(20) not null,
passwd varchar2(12) not null,
reg_date date not null,
readcount int default 0,
ref number not null,
re_step number not null,
re_level number not null,
content varchar2(20) not null,
ip varchar2(15) not null
);
re_level: 0=원글, 1=답글 , 2=답글의답글, 3 답글의답글의답글
drop sequence board_seq;
create sequence board_seq
increment by 1
start with 1
minvalue 1
maxvalue 10000
nocache;
'BACK END > JSP' 카테고리의 다른 글
2일(07.11) 내장객체 request / 내장객체 response (0) | 2022.07.28 |
---|---|
1일(07.08) 내장객체 request (0) | 2022.07.28 |
1일(07.08) for문 / while문 (0) | 2022.07.11 |
1일(07.08) JSP /import /JSP태그 / 선언문/ 페이지 지시어 / 내장객체 out (0) | 2022.07.11 |
1일(07.08) JSP 설정 (0) | 2022.07.11 |