Exercise: Exclude Ending Pattern Find students whose names do NOT end with 'y'. Solution sqlCopy1SELECT * FROM students 2WHERE name NOT LIKE '%y';