Exercise: Even IDs Find students with even IDs. Solution sqlCopy1SELECT * FROM students WHERE id % 2 = 0;