I have a query in Oracle like this:
Select 1 from dual
where
(1,1) IN ( (1,1), (2,1) )
and want to convert it to DB2.
I tried this query:
Select 1 from sysibm.sysdummy1
where
(1,1) IN ( (1,1), (2,1) )
I replaced "," with SPACE and ";" but got error.
It will be appreciated to help me to solve this problem.
Best,


|