Skip
Arish's avatar

54. Practice - NOT LIKE End


Exercise: Exclude Ending Pattern

Find students whose names do NOT end with 'y'.

Solution

sql
1SELECT * FROM students
2WHERE name NOT LIKE '%y';