+ 1
'_a%' represents text containing 'a' as second letter, example bat, date, matter
name like '_a%' will select records for which name contains 'a' as second letter
'%a' means all strings ending with letter 'a', example pajama, hypoxia
name not like 'a%' will selects all records for which name doesn't ends with letter 'a'