I am trying to run an update query which uses multiple parameters in the where clause updating multiple rows based on those parameters:
UPDATE PROD.PLM103_AXXS
SET AD_ST = 'X'
WHERE (PL_L_R, L_XD_SEQ) in
((12283952,1),(12283952,3))
But it doesn't allow me to do so in SQL(DB2) giving me the following error message:
SQL0104N An unexpected token "(" was found following "_R, L_XD_SEQ) in (". Expected tokens may include: "<values> ".
Thanks in advance!!!
UPDATE PROD.PLM103_AXXS
SET AD_ST = 'X'
WHERE (PL_L_R, L_XD_SEQ) in
((12283952,1),(12283952,3))
But it doesn't allow me to do so in SQL(DB2) giving me the following error message:
SQL0104N An unexpected token "(" was found following "_R, L_XD_SEQ) in (". Expected tokens may include: "<values> ".
Thanks in advance!!!