最後の支払い日が X 日以上前のクライアントを含む結果セット (postgres データベースから) を返したいです。
これは、すべてのクライアントとその最後の支払い日のリストを取得するために現在持っているものです。
select usermaster.userid, date_trunc('days', now()-max(paymentdate)) as last_payment
from usermaster, paymentdetail
where usermaster.userid=paymentdetail.userid
group by usermaster.userid;
追加の where 条件で制限したい: where ... and last_payment > 100 days