|
Home >> FAQs/Tutorials >> SQL Server FAQ
SQL Server FAQ - Using Subqueries with the IN Operators
By: FYIcenter.com
(Continued from previous topic...)
How To Use Subqueries with the IN Operators?
A subquery can be used with the IN operator as "expression IN (subquery)".
The subquery should return a single column with one or more rows to form a list
of values to be used by the IN operation. The following tutorial exercise
shows you how to use a subquery with the IN operator. It returns all links
with ids in the fyi_rates table.
SELECT id, url, tag, YEAR(created) As year
FROM fyi_links WHERE id IN (SELECT id FROM fyi_rates)
GO
id url tag Year
101 dev.fyicenter.com DEV 2006
102 dba.fyicenter.com DBA 2007
103 sqa.fyicenter.com SQA 2007
SELECT id, url, tag, YEAR(created) As year
FROM fyi_links
WHERE id IN (101, 102, 103, 204, 205, 206, 207)
GO
id url tag Year
101 dev.fyicenter.com DEV 2006
102 dba.fyicenter.com DBA 2007
103 sqa.fyicenter.com SQA 2007
As you can see, the subquery is equivalent to a list of values.
(Continued on next topic...)
- How To Join Two Tables in a Single Query?
- How To Write a Query with an Inner Join?
- How To Define and Use Table Alias Names?
- How To Write a Query with a Left Outer Join?
- How To Write a Query with a Right Outer Join?
- How To Write a Query with a Full Outer Join?
- How To Write an Inner Join with the WHERE Clause?
- How To Name Query Output Columns?
- What Is a Subquery in a SELECT Query Statement?
- How To Use Subqueries with the IN Operators?
- How To Use Subqueries with the EXISTS Operators?
- How To Use Subqueries in the FROM Clause?
- How To Count Groups Returned with the GROUP BY Clause?
- How To Return the Top 5 Rows from a SELECT Query?
- How To Return the Second 5 Rows?
- How To Use UNION to Merge Outputs from Two Queries Together?
- How To Use ORDER BY with UNION Operators
|