Viewing 5 posts - 1 through 5 (of 5 total)
jimbobmcgee (12/3/2012)
* is supposed to be a prefixing term, so "ipad*" should match words that start with "ipad", e.g. "ipady", "ipadness", "ipadable"...
December 3, 2012 at 9:50 am
Eugene Elutin (11/19/2012)
eranzo111 (11/19/2012)
I was so happy when I saw the significant performence improvement when I used the full text search instead of the...
November 20, 2012 at 7:36 am
A dead end I guess... 🙁
I was so happy when I saw the significant performence improvement when I used the full text search instead of the LIKE query, and...
November 19, 2012 at 7:31 am
Tava (11/19/2012)
eranzo111 (11/19/2012)
With those 2 queries, I get partial results.
Let say the the text I query by is "eran":
SELECT *
FROM table_name
WHERE FREETEXT(*, 'eran');
SELECT *
FROM table_name
WHERE CONTAINS(field_name, 'eran');
And the DB...
November 19, 2012 at 3:22 am
Hi Tava,
With those 2 queries, I get partial results.
Let say the the text I query by is "eran":
SELECT *
FROM table_name
WHERE FREETEXT(*, 'eran');
SELECT *
FROM table_name
WHERE CONTAINS(field_name, 'eran');
And the DB has 4...
November 19, 2012 at 1:21 am
Viewing 5 posts - 1 through 5 (of 5 total)