mysql - Unexpected token limit in JPA -
whenever i'm using limit in jpa query exceptionn thrown.can 1 suggest me alternative way filter record on basis of rownum or roncount.
select employeebo a.batchid=:'127'and limit :startponit,:endpoint,
you can't use limit
in jpa named query, can restrict records row count using setmaxresult();
Comments
Post a Comment