移動それは:
ここ
select
c.branch, c.cust_no, c.name, c.dobirth, c.cust_sex,c.address, c.phone, c.group_name, c.group_code, c.INCOR_DATE,
(l.branch+l.gl_no+l.ac_no) as cust, SUM(l.loan_amt) as lamt, l.ac_no, l.cycle, l.exp_date, l.inst_type, l.trx_no,
l.ln_period, l.full_paid, l.Class_Age, l.disb_date, max(h.trx_date) as last_trx,
(h.principal + h.interest) as instalment, (h.principal + h.interest) as overdue,
h.trx_date
from customer c, loans l, loanhist h
where c.cust_no = l.ac_no and l.full_paid != 1 and c.cust_no = h.ac_no and MONTH(h.trx_date) = MONTH(GETDATE())
and YEAR(h.trx_date) = YEAR(GETDATE()) and h.trx_type != 'lp' and h.trx_date = MAX(h.trx_date)
group by c.branch, c.cust_no, c.name, c.dobirth, c.cust_sex,c.address, c.phone, c.group_name, c.group_code, c.INCOR_DATE,
l.ac_no, l.cycle, l.exp_date, l.inst_type, l.trx_no,
l.ln_period, l.full_paid, l.Class_Age,
l.disb_date, l.branch,l.gl_no, h.principal, h.interest, h.trx_date
それが私に与えていたエラーは次のとおりです。
は、ここに私のクエリです。
によってグループの後に発生します。
having h.trx_date = MAX(h.trx_date)
@Tab Alleman、それは私の質問にどのように関連していますか? –