Exercise: Lowest Marks Select 5 students with lowest marks. Solution sqlCopy1SELECT * FROM students 2ORDER BY marks ASC 3LIMIT 5;