如何使用 QueryDSL SQL实现https://stackoverflow.com/a/16392399/14731 ?
我明白那个
新 SQLSubQuery().from(customer).where(customer.email.eq("foo@example.com"))
楷模
选择客户,其中 customer.email = 'foo@example.com'
但我不明白如何选择 [literal],例如:
select 1 from customer
或者
select 'foo@example.com', 0
根据上述链接的要求。