Forum : How would you write a query to select all teams that won either 2, 4, 6 or 8 games?
Brief description  about Online courses   join in Online courses
View prabeen  patra 's Profile

How would you write a query to select all teams that won either 2, 4, 6 or 8 games?

How would you write a query to select all teams that won either 2, 4, 6 or 8 games????
Asked by prabeen patra | Mar 18, 2010 |  Reply now
Replies (1)
View teacher siliconindia 's Profile
Hi Prabeen,
SELECT team_name FROM teams WHERE team_won IN (2, 4, 6, 8)
Mar 18, 2010