I\'m trying to write a Select statement where I can see if one column is like part of another.
tblNames ID FullName FirstName 1 Mr.
It looks OK, except you probably want to switch the order around in your where:
WHERE Fullname not like '%' + FirstName + '%'