I have a complex query where I will probably have to block out parts of the overall query into sub queries.
As I'm not that experienced with building large/complex queries, I'm wondering if its valid to use the 'IN' qualifier against a sub query that returns a large result set?
Code:
SELECT expertName
FROM expert
WHERE expertid IN (SELECT expertid
FROM xxxxx
WHERE xxxxxx)
Can the SQL engine handle an IN qualifier where a sub query returns 1,000+ results?
TIA,
.... davout
P.S. I'm wondering whether there should be a separate forum for generic SQL questions like mine?