Skip
Arish's avatar

99. Practice - LIMIT with Filter


Exercise: Filtered Limit

Select 6 students older than 9.

Solution

sql
1SELECT * FROM students
2WHERE age > 9
3LIMIT 6;