到期日估计

时间:2017-05-22 07:07:08

标签: sql plsql

我的"insurance_pay_dtl"(insurance table)撰写'ins_paid_dt'(insurance paid date)列,   我需要选择所有未在截止日期前支付保险金额的会员,   截止日期为1年(365天)   我该怎么做..?

1 个答案:

答案 0 :(得分:0)

您需要将insurance_pay_dtl表与insurance_farmer_hdr与其主键链接,例如:

Select member_id, member_name from insurance_farmer_hdr ifd, insurance_pay_dtl ipd
 where ifd.insurance_rec_id = ipd.insruance_rec_id and trunc(sysdate) > ifd.due_date

根据您的表格列更改上述查询中的列,然后尝试。