Exercise: Odd Ages Find students with odd ages. Solution sqlCopy1SELECT * FROM students WHERE age % 2 = 1;