摘要: MySQL分页常见写法: select * from persons limit 0,10; 起点位置为0,查询10条记录。 (在postgreSQL中执行,会报语法错误。) 兼容MySQL与postgreSQL的写法: select * from persons limit 10 offset 0 阅读全文
posted @ 2024-11-09 09:43 小尼 阅读(3) 评论(0) 推荐(0) 编辑