IT Placement Papers Database MYSQL
This category contains MYSQL Interview Questions and Answers |
How would you write a query to select all teams that won either 2, 4, 6 or 8 games?
|
|
|
|
|
SELECT team_name FROM teams WHERE team_won IN (2, 4, 6, 8)
Only registered users can write comments. Please login or register.
|