Is it possible to include in a "IN" clause multiple fields??? something like the following
select * from user
where code, userType in ( select code, userType from userType )
thanks
I'm using ms sql server 2008
--
edit: I know this can be achieved with joins and exists (thanks for your answers anyway), I just wanted to know if it could just be done with the IN clause...