Exercise: Filtered Limit Select 6 students older than 9. Solution sqlCopy1SELECT * FROM students 2WHERE age > 9 3LIMIT 6;