/*我们自己需求的分页sql格式是:select * from table limit (start-1)*limit,limit; 
其中start是页码,limit是每页显示的条数*/
SELECT * FROM employees LIMIT (2-1)*5,5