1.

How Would You Write A Query To Select All Teams That Won Either 2, 4, 6 Or 8 Games?

Answer»

SELECT team_name FROM TEAMS WHERE team_won IN (2, 4, 6, 8)

SELECT team_name FROM teams WHERE team_won IN (2, 4, 6, 8)



Discussion

No Comment Found