Answered
How to exclude characters
Within my query, I have a WHERE statement:
WHERE Left(t_item,2) NOT LIKE '%-'
AND Left(t_item,2) NOT LIKE '_%'
This was to exclude the underscore character. I was told this was the only non number or letter used. Of course now I am finding out that this is not true and many other characters are used. Is there a way for me to alter this to say that the left 2 character MUST be either a letter or a number.
WHERE Left(t_item,2) NOT LIKE '%-'
AND Left(t_item,2) NOT LIKE '_%'
This was to exclude the underscore character. I was told this was the only non number or letter used. Of course now I am finding out that this is not true and many other characters are used. Is there a way for me to alter this to say that the left 2 character MUST be either a letter or a number.