I have a TableA
as specified below in which a full-text index is specified for column Name
TableA
Id (PK)
Name (TXI)
The table has the following records:
ingrid
neville
ned
audry
inga
I then run the following query against the table:
SELECT * FROM TableA WHERE CONTAINS(Name,'"n*"');
The result of the query is as follows:
Id Name
1 ingrid
2 neville
3 ned
Why is it returning the first record even though it doesn't starts with 'n'?