SELECT title, author, isbn, description FROM library WHERE published_date > 2010AND (title, author, isbn) > (?, ?, ?)ORDER BY title, author, isbnLIMIT 20
SELECT title, author, isbn, description
FROM library
WHERE published_date > 2010
AND (title, author, isbn) > (?, ?, ?)
ORDER BY title, author, isbn
LIMIT 20
Phoenix分页实现
原文:http://www.cnblogs.com/mario-nb/p/6514087.html