2013-12-09 58 views
0

我們可以在JOOQ中使用SelfJoin嗎?如何在Jooq中使用SelfJoin?

Select Count(1) CountPayments 
From PaymentDetail APD1, PaymentDetail APD2, Payment AP 
where APD1.PaymentNumber =123 
    and APD1.BillNumber > 0 
    and APD2.BillNumber = APD1.BillNumber 
    and APD2.PaymentNumber <> APD1.PaymentNumber 
    and AP.PaymentNumber = APD2.PaymentNumber 

如果是的話我們如何在上面的查詢中使用它?

回答

1

The manual's section about aliasing tables可能會給你一些線索。

本質上說,只是分配別名到表中:

PaymentDetail APD1 = PaymentDetail.as("APD1"); 
PaymentDetail APD2 = PaymentDetail.as("APD2"); 
Payment AP = Payment.as("AP"); 

DSL.using(configuration) 
    .select(count(1).as("CountPayments")) 
    .from(APD1, APD2, AP) 
    .where(APD1.PaymentNumber.eq(123)) 
    .and(APD1.BillNumber.gt(0)) 
    .and(APD2.BillNumber.eq(APD1.BillNumber)) 
    .and(APD2.PaymentNumber.ne(APD1.PaymentNumber)) 
    .and(AP.PaymentNumber.eq(APD2.PaymentNumber))