I am facing issue in this below statement
`SELECT b
FROM com.development.searchbooks.dto.BooksEntity b
WHERE lower(b.title) LIKE ?1
OR lower(b.author_name) LIKE ?1
OR lower(b.publication) LIKE ?1
ORDER BY title ASC LIMIT 10 OFFSET ?2`
unexpected token: LIMIT near line 1, column 173
This is the query i am using to filter based on keyword and order by ascending and doing pagination. i am getting error right after adding "LIMIT 10 OFFSET ?2" this POC.
Kindly help on this.