QUESTION POSED ON: 09 April 2009
Suppose I have a table with columns as (a,b,c,d) and (a,b) form
the composite key. Can I write the query with values of the
key in a list of values? For example, like this:
select a,c,d from mytable
where (a,b) in ((1,2),(1,4),(1,5))
|