Exercise: Exclude Starting Pattern Find students whose names do NOT start with 'H'. Solution sqlCopy1SELECT * FROM students 2WHERE name NOT LIKE 'H%';