update IQAlarm
set IQAD=GETDATE(),AD=AD+1
where exists (select CPC from Inquiry where Inquiry.IQST='ooo'
and DATEDIFF(DAY,GETDATE(),Inquiry.QDL)<=3 and Inquiry.CPC = IQAlarm.CPC);
insert into IQAlarm (CPC)
select CPC from Inquiry
where not exists (select CPC from Inquiry where Inquiry.IQST='ooo'
and DATEDIFF(DAY,GETDATE(),Inquiry.QDL)<=3 and Inquiry.CPC = **IQAlarm.CPC**);
更新は正常に機能しますが、挿入すると次のエラーが発生します。
マルチパート識別子「IQAlarm.CPC」をバインドできませんでした。