1

如果我有一个在 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);
4

1 回答 1

3

使用Factory.value("A").as("FIleIndicator")Factory.inline(null).as("PeopleRSNCrypt")

于 2013-09-27T08:40:21.607 回答