This statement is returning error 00920- invalid relational operator.
I am sure it is my syntax, but I am not seeing it. If anycode could look it over and point me to getting it right, I would appreciate it.
Thank you
DELETE FROM TABLE15 p
WHERE (p.item_id, p.product_id) IN
(SELECT S.item_id, S.product_id )
FROM TABLE14 S);
Your brackets are dodgy…
You need to remove the additional one. The error is caused by
innot being parsed correctly due to the extra bracket.