|
Home >> FAQs/Tutorials >> SQL Server FAQ
SQL Server FAQ - Using Subqueries with the EXISTS Operators
By: FYIcenter.com
(Continued from previous topic...)
How To Use Subqueries with the EXISTS Operators?
A subquery can be used with the EXISTS operator as "EXISTS (subquery)",
which returns true if the subquery returns one or more rows.
The following statement is a good example of "EXISTS (subquery)".
It returns rows from fyi_links table that there are rows existing in the fyi_rates
table with the same id.
SELECT id, url, tag, YEAR(created) As year
FROM fyi_links WHERE EXISTS (
SELECT * FROM fyi_rates
WHERE fyi_rates.id = fyi_links.id)
GO
id url tag Year
101 dev.fyicenter.com DEV 2006
102 dba.fyicenter.com DBA 2007
103 sqa.fyicenter.com SQA 2007
Note that the subquery uses columns from the source table of the outer query.
(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
|