I want to update data on table using the results of subquery.
for my sql below, I want to update region number of rows on table to the region number of rows that meet the condition with region ovrd = Y & terminate date = 999999.
I have tried:
Update ACR B
Set B.region_NUMBER = A.region_NUMBER , B.region_OVRD_I ND = 'Y'
From ACR B
WHERE B.region_NUMBER NOT IN
(select A.region_NUMBER from ACR A
where B.AGENT_ID = A.AGENT_ID
AND A.REGION_OVRD_I ND = 'Y' AND
A.TERMINATION_D TE = 99999999)
I am getting this error:
error
42601(-104)[IBM][CLI Driver][DB2/NT] SQL0104N An unexpected token "CURRENT_TIMEST AMP" was found following "DATE, B.TIME_STAMP =". Expected tokens may include: "(". SQLSTATE=42601
(0.02 secs)
Appreciate any suggestions. Thanks.
for my sql below, I want to update region number of rows on table to the region number of rows that meet the condition with region ovrd = Y & terminate date = 999999.
I have tried:
Update ACR B
Set B.region_NUMBER = A.region_NUMBER , B.region_OVRD_I ND = 'Y'
From ACR B
WHERE B.region_NUMBER NOT IN
(select A.region_NUMBER from ACR A
where B.AGENT_ID = A.AGENT_ID
AND A.REGION_OVRD_I ND = 'Y' AND
A.TERMINATION_D TE = 99999999)
I am getting this error:
error
42601(-104)[IBM][CLI Driver][DB2/NT] SQL0104N An unexpected token "CURRENT_TIMEST AMP" was found following "DATE, B.TIME_STAMP =". Expected tokens may include: "(". SQLSTATE=42601
(0.02 secs)
Appreciate any suggestions. Thanks.
Comment