如何构造如下SQL(100分)

  • 主题发起人 主题发起人 king
  • 开始时间 开始时间
K

king

Unregistered / Unconfirmed
GUEST, unregistred user!
tblccont /合同列表(主)

tblmoneyrec /合同付款计划(一合同有多次)
tblvoucher /合同付款记录(一合同有多次)
如何查询到期应付款而未付款的合同列表。
 
Select * from tblccont
where XXX in (Select XXX from tblmoneyrec)
and XXX not in (Select XXX from tblvouther);
 
接受答案了.
 
后退
顶部