Skip
Arish's avatar

53. Practice - NOT LIKE Start


Exercise: Exclude Starting Pattern

Find students whose names do NOT start with 'H'.

Solution

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