"내가 원하는대로 페이징 구현할 수 있을까?"
전체 데이터 조회 vs 10개 데이터 속도 차이 select bno,title, content,writer,regdate,viewcntfrom tbl_boardorder by bno desc, regdate desc select bno,title, content,writer,regdate,viewcntfrom (select bno,title, content,writer,regdate,viewcnt, rownum rn from (select bno,title,content,writer,regdate,viewcnt from tbl_board order by bno desc))where rn between 11 and 20 Oracle vs MySQL MySQLselect bno,title, content,w..