Hi, This is a known problem. Even equality doesn't work well for tuples (where (a, b) = (1, 2)). I don't consider this an urgent request however, as using tuples isn't very common and database-independent. What you could do is using one column where both columns are combined. Or use a join with a temporary table:
from temp_table temp, your_table t where temp.a = t.a and temp.b = t.b 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.
