Exercise: Age 13 and Above
Find students aged 13 or older.
Solution
sql
1SELECT * FROM students
2WHERE age >= 13;Practice More
sql
1-- Marks 85 or higher
2SELECT * FROM students WHERE marks >= 85;
3
4-- Age 14 and above
5SELECT * FROM students WHERE age >= 14;