D
Dino M. Buljubasic
I am trying to simulate wild card search like for example:
cran* would return any word containing 'cran' at the begining
*cran would return any word containing 'cran' at the end
*cran* would return any word containing 'cran' in the middle
Here is whay I am doing but it does not work
SELECT whatever FROM aTable WHERE this = that AND CONTAINS(aColumn,
"cran+%")
I am fetching data from an SQL Server using full text indexing
Any help will be appreciated
cran* would return any word containing 'cran' at the begining
*cran would return any word containing 'cran' at the end
*cran* would return any word containing 'cran' in the middle
Here is whay I am doing but it does not work
SELECT whatever FROM aTable WHERE this = that AND CONTAINS(aColumn,
"cran+%")
I am fetching data from an SQL Server using full text indexing
Any help will be appreciated