MySQL返回结果分页,返回指定的行

例如
SELECT * FROM test;
返回结果假如是100行
怎样才能只返回其中的50-60行这10行结果???

---------------------------------------------------------------

SELECT * FROM test LIMIT 49,10

Published At
Categories with 数据库类
comments powered by Disqus