I have a table name Product contains 3 columns as:
Product-id name Price
The name column contains all product names.
Example: 1340 GPS, 1340T GPS, etc.
When I write
select top 10 * from product where contains(name,'1340');
Result 1 line 1340 GPS
but when searching
select top 10 * from product where name like '%1340%';
Then the result is 1340 GPS and 1340T GPS .
Actually, my requirement is to use contains() , but it should show both lines, such as LIKE .
How to do it:?
Please, help
Thanks in advance
user1926138
source share