我必须在jOOQ中使用函数调用执行 Select 查询,该怎么做?我必须编写这种类型的 jOOQ 查询。
Select Cola,col2,Col3, f_feeAmount(arg) col4 from SomeTable
如何为此编写 jOOQ 代码?
SelectQuery<Record> selectQueryFee = transRefundFee.selectQuery();
selectQueryFee.addSelect(AccountBillFee.ACCOUNT_BILL_FEE.ACCOUNT_BILL_FEE_RSN,AccountBill.ACCOUNT_BILL.BILL_NUMBER,AccountBill.ACCOUNT_BILL.PAYMENT_OPTION);
selectQueryFee.addSelect(f_feeAmount(arg));
但f_feeAmount
jOOQ 无法识别,因为它是用户定义的函数。