제일처음 

select * from board order by idx desc limit 0 , 10


제일 마지막

select * from board order by idx asc limit 0, totalRow%10

if ( totalRow%10 == 0 ) ? 10 


만약 총갯수에서 %10 을 나눈 값이 0이라면 그 전 페이지의 10개 게시물을 보여줘야 되므로

임의의 10개의 row를 보여줘야 한다.

+ Recent posts