【发布时间】:2013-09-27 17:03:44
【问题描述】:
如果我有一个在 SQL 上运行的查询:
String contactWhere = " UNION SELECT FoldContact.FoldRSN,NULL PeopleRSNCode,'A' FileIndicator from People,Contact"
但是我们如何在 jooq 中传递 NULL PeopleRSNCrypt 和 'A' FIleIndicator。如果我们有
SelectQuery<Record> selectQuery = create.selectQuery();
selectQuery.addSelect(Contact.FOLD_CONTACT.FOLD_RSN);
【问题讨论】: