Exercise: Divisible by 10 Find marks divisible by 10. Solution sqlCopy1SELECT * FROM students WHERE marks % 10 = 0;