I am trying to select all the strings has word ABC1 in it. But getting wrong answer with LIKE query. Not sure how to get exact answer.
Below is the string format in a column:
"SomeString ABC1000 Other";
And I don't want to select any String which is in the format like
"itisABC1000 other other"
ABC1to be at the beginning of a word? Use a regexp, with the[:<:]word beginning pattern.LIKEcan't do this.