kempis555
Programmer
- Jan 2, 2001
- 77
This is bugging me to no end. Even using the example in the SQL help books, I can't get the CONTAINS function to return anything. Here's a sample:
SELECT Description
FROM Categories
WHERE CONTAINS(Description, '"bean curd"')
that returns bupkis. Zilch. Nada.
However, the following code:
SELECT Description
FROM Categories
WHERE Description like '%bean curd%'
returns "Dried fruit and bean curd" as it should. I can't think of what could be causing this, full-text indexing is enabled for that column (it gave an error before I enabled it) ???
-k
SELECT Description
FROM Categories
WHERE CONTAINS(Description, '"bean curd"')
that returns bupkis. Zilch. Nada.
However, the following code:
SELECT Description
FROM Categories
WHERE Description like '%bean curd%'
returns "Dried fruit and bean curd" as it should. I can't think of what could be causing this, full-text indexing is enabled for that column (it gave an error before I enabled it) ???
-k