Currently, my SQL search query use LIKE
clause with %some-word-to-search%
wildcards.
The problem of using percent wildcard is that it's returning all the rows which containing a part of my search param, e,g:
If I search car It will also show cartoons to me! is there any way to compare like clause only with entire words instead of part of it?
Any suggestion would be appreciated...