Problem in querying using Contains Operator [message #75994] |
Tue, 22 October 2002 04:35 |
Venkat
Messages: 110 Registered: February 2001
|
Senior Member |
|
|
I want to perform search operation on a particlar field using the CONTAINS operator. The details are as shown below.
I have a table Product which has some pre-populated data. When i execute a query say
select Product.ProductId from Product where Contains( Product.ProductId , '{BTMTRAY-M40-S}' ,2) >0;
I get the correct result.
Now i insert a new value "TEST" for productId into the same table. Now when i try to execute the same query
as
select Product.ProductId from Product where Contains( Product.ProductId , '{TEST}' ,2) >0;
I dont get any result. Why is it so.
|
|
|
|
|
|