SQL IN Statement
The SQL IN clause is used to pass on multiple values to the WHERE clause in the statement.
SELECT * FROM Territories WHERE RegionID IN (SELECT RegionID FROM Region)
Comments
Post a Comment