728x90
반응형
2. 서브 게시판 테이블
(1) 테이블 생성(고유번호,한줄내용, 패스워드, 글쓴이,등록일, 본문 고유번호)
create table subBoard(
unq number(9) not null,
pwd varchar2(20) not null,
name varchar2(10),
comm varchar2(100),
rdate timestamp,
cUnq number(9)
);
select unq,title,writer,rdate,(select count(*) from subBoard where cUnq=a.unq) subCnt from (select rownum rm,unq,title, writer,rdate from (select unq,title,writer,rdate from board order by unq desc)) a where rm between 1 and 5;
728x90
반응형
'개발 > sql' 카테고리의 다른 글
oracle sql (0) | 2015.09.27 |
---|---|
oracle sql (0) | 2015.09.25 |
oracle sql 커서(암시적 커서,명시적 커서) (0) | 2015.09.24 |
oracle sql (0) | 2015.09.24 |
oracel sql (0) | 2015.09.23 |
댓글