当前位置:   article > 正文

postgre分页查询报错:ERROR: LIMIT #,# syntax is not supported 建议:Use separate LIMIT and OFFSET clauses_use separate limit and offset clauses.

use separate limit and offset clauses.

问题

使用postgre查询时报错:

ERROR: LIMIT #,# syntax is not supported 建议:Use separate LIMIT and OFFSET clauses
  • 1

在这里插入图片描述

分析

错误类型看时PSQLException,说明是postgresql数据库识别的错误
可以看出是因为 sql语句中的"LIMIT #,#"无法识别!

这明显是mysql分页查询语法

select * from table limit #{pageSize}, #{size}
select * from table limit 1, 10
  • 1
  • 2

第一次使用postgresql数据库,并不清楚它的sql语句规范

解法

select * from table LIMIT 1 OFFSET 10
//注意该语句的意思是从第10条开始,只查一条数据,这里区分mysql
select * from table LIMIT 10 OFFSET 0
//这个才是从0开始查10条数据
  • 1
  • 2
  • 3
  • 4
声明:本文内容由网友自发贡献,转载请注明出处:【wpsshop博客】
推荐阅读
  

闽ICP备14008679号