1
에 인수 (널) 및 하드 코드 된 값을 전달하는 방법 :I는 SQL에서 실행되는 쿼리가있는 경우 JOOQ
String contactWhere = " UNION SELECT FoldContact.FoldRSN,NULL PeopleRSNCode,'A' FileIndicator from People,Contact"
을하지만 우리는 NULL PeopleRSNCrypt 및 'A'FIleIndicator 통과하는 방법 주크에. 우리는
SelectQuery<Record> selectQuery = create.selectQuery();
selectQuery.addSelect(Contact.FOLD_CONTACT.FOLD_RSN);
하지만 어디에 어떻게 열 이름을 – jaideep
사용'이 .as ("이름") '제공해야하는 경우; 내 편집을 봐라. –