I want to do the following in the db2 SQL
select * from table where column =(value1,value2,value3)
result should return all the rows with all columns for the given table whose column values is value1,value2 and value3
I want to do the following in the db2 SQL
select * from table where column =(value1,value2,value3)
result should return all the rows with all columns for the given table whose column values is value1,value2 and value3
Do you want
in?This returns entire rows of
mytablefor whichmycolhas one of the three literal values enumerated on the right side of theinoperator.