How to query any values that contain ...
Hello there,
I tried to query any values that end with ... from a table. I tried this:
where columnA like '%..%' and it returns nothing even I know I have a few values like this XXX....
I also tried
where columnA like '%.' and it returns only values like XXX. but not like XXX.. or XXX.....
Any idea why it won't work for '%..' or '%..%'
Thanks,
Ning