How to implement https://stackoverflow.com >
I understand that
new SQLSubQuery (). from (customer) .where (customer.email.eq (" foo@example.com "))
Models
select the client where customer.email = ' foo@example.com '
but I don’t understand how to select [literal] , for example:
select 1 from customer or select ' foo@example.com ', 0
as required by the above link.
querydsl
Gili
source share