Is there an easy way to convert a SQL string, for example:
SELECT u.name, u.role
FROM users
WHERE user_id = ?
for any of the SQL collectors, such as JOOQ, QueryDsl, to get the ability to change the query - add joins, additional clauses "where", LIMIT-OFFSET?
source
share