i need to implement the following query in SQL Server

select *
from table1
WHERE  (CM_PLAN_ID,Individual_ID)
IN
(
 Select CM_PLAN_ID, Individual_ID
 From CRM_VCM_CURRENT_LEAD_STATUS
 Where Lead_Key = :_Lead_Key
)

but the WHERE..IN clause allows only 1 column. How to compare 2 or more columns with another inner select?

link|improve this question

StackOverflow, surely? – gbn Jul 16 '09 at 8:10
feedback

migrated from serverfault.com Jul 16 '09 at 9:18

This question came from our site for system administrators and desktop support professionals.

5 Answers

up vote 6 down vote accepted

You can make a derived table from the subquery, and join table1 to this derived table:

select * from table1 INNER JOIN 
(
   Select CM_PLAN_ID, Individual_ID
   From CRM_VCM_CURRENT_LEAD_STATUS
   Where Lead_Key = :_Lead_Key
) table2
ON 
   table1.CM_PLAN_ID=table2.CM_PLAN_ID
   AND table1.Individual=table2.Individual

This only works if table2 does not contain duplicate pairs of CM_PLAN_ID, Individual_ID (such as if it's the PK). Otherwise you'll need to use DISTINCT.

link|improve this answer
or more generally SELECT * FROM table INNER JOIN otherTable ON ( table.x = otherTable.a AND table.y = otherTable.b) – ala Jul 16 '09 at 7:56
What about the multiple rows that would exist if table 2 is a child of table 1? And why LEFT JOIN? – gbn Jul 16 '09 at 8:18
@gbn: Thanks, you're right. Fixed that. – sleske Jul 16 '09 at 8:21
feedback

You'll want to use the WHERE EXISTS syntax instead.

SELECT *
FROM table1
WHERE EXISTS (SELECT *
              FROM table2
              WHERE Lead_Key = @Lead_Key
                        AND table1.CM_PLAN_ID = table2.CM_PLAN_ID
                        AND table1.Individual_ID = table2.Individual_ID)
link|improve this answer
While this would work, it converts the uncorrelated query in the question into a correlated query. Unless the query optimizer is clever, this might give you O(n^2) performance :-(. But maybe I'm underestimating the optimizer... – sleske Jul 16 '09 at 7:50
I use syntaxes like this all the time without issue. Unless you are using an older optimizer (6.5, 7, 8, etc) it shouldn't have a problem with this syntax. – mrdenny Jul 16 '09 at 8:09
@sleske: EXISTS is by far better: see my comments in my answer. And test it first,. @mrdenny: I misread your answer at first, I'd use EXISTS too – gbn Jul 16 '09 at 8:17
1  
This is most efficient, +1. See this article in my blog for performance comparison: explainextended.com/2009/06/17/efficient-exists – Quassnoi Jul 16 '09 at 14:46
Even SQL 2000 could handle most correlated subqueries without turning the query into an O(n^2). Might have been a problem back on 6.5. – GilaMonster Jul 17 '09 at 7:02
feedback

A simple EXISTS clause is cleanest

select *
from table1 t1
WHERE
EXISTS
(
 Select * --or 1. No difference.
 From CRM_VCM_CURRENT_LEAD_STATUS Ex
 Where Lead_Key = :_Lead_Key
-- correlation here
AND
t1.CM_PLAN_ID = Ex.CM_PLAN_ID AND t1.CM_PLAN_ID =  Ex.Individual_ID
)

If you have multiple rows in the correlation then a JOIN gives multiple rows in the output, so you'd need distinct. Which usually makes the EXISTS more efficient.

Note "SELECT" * with a JOIN would also include columns from the row limiting tables

link|improve this answer
feedback

I founded easier this way

Select * 
from table1 
WHERE  (convert(VARCHAR,CM_PLAN_ID) + convert(VARCHAR,Individual_ID)) 
IN 
(
 Select convert(VARCHAR,CM_PLAN_ID) + convert(VARCHAR,Individual_ID)
 From CRM_VCM_CURRENT_LEAD_STATUS 
 Where Lead_Key = :_Lead_Key 
) 

Hope this help :)

link|improve this answer
1  
Ouch, no index use here do to the string concat. – mrdenny Feb 3 '11 at 21:38
feedback

Why use WHERE EXISTS or DERIVED TABLES when you can just do a normal inner join:

SELECT t.*
FROM table1 t
INNER JOIN CRM_VCM_CURRENT_LEAD_STATUS s
    ON t.CM_PLAN_ID = s.CM_PLAN_ID
    AND t.Individual_ID = s.Individual_ID
WHERE s.Lead_Key = :_Lead_Key

If the pair of (CM_PLAN_ID, Individual_ID) isn't unique in the status table, you might need a SELECT DISTINCT t.* instead.

link|improve this answer
And the DISTINCT usually means an EXISTS is more efficient – gbn Jul 16 '09 at 18:39
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.