Paging


내눈에만 보이면 돼 !

Untitled

Database Paging


저장된 데이터를 꺼내오는 곳은 데이터베이스 어떻게 데이터를 꺼내올까 ? SQL로....

게시판 테이블로 테스트 해보자

create table board_content(
-- 게시글 번호
num SERIAL not null, 
-- 게시글 제목
title VARCHAR not null,
-- 게시글 내용
content VARCHAR not null,  
-- 등록 일자
create_date VARCHAR not null,
-- 수정 일자
update_date VARCHAR not null, 
--조회 수
view_cnt INT not null 	
);

SELECT COUNT(*) FROM board_content
count  |
-------+
3021033|

PostgreSQL/Mysql/Mariadb/CUBRID Style Paging SQL


게시글 전체 조회 해보자