Hi,
Mainly I am just wondering if I can exclude a sequence when using LIKE .
I want this to return IDs that match the ending but not if they begin with the 'AB' sequence.
String List
AA000BB
AB000BB
AC000BB
AA000CC
DD000BB
SELECT * FROM List where ID like '[^AB]%BB'
Looking to return the below list rather than just DD000BB
AA000BB
AC000BB
Thanks!