Hi, For H2, the expression (1, 2) is an array, so the queries would need to be:
select 1 from dual where (1, 2) in (select (1, 2) from dual); select 1 where (1, 2) in (select (1, 2)); select 1 from dual where (1, 2) in ((1, 2)); Regards, Thomas -- You received this message because you are subscribed to the Google Groups "H2 Database" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/h2-database?hl=en.
