📚 Practice Mode
SQL Fundamentals
Learn at your own pace with hints and detailed explanations
1 / 20
Multiple Choice
Which SQL statement selects all rows from table called Contest, with column ContestDate having values greater or equal to May 25, 2006?
- SELECT * FROM Contest WHERE ContestDate >= '05/25/2006'
- SELECT * FROM Contest HAVING ContestDate >= '05/25/2006'
- SELECT * FROM Contest WHERE ContestDate < '05/25/2006'
- SELECT * FROM Contest IN ContestDate < '05/25/2006'