I am having a table name Product
contains 3 columns as:
Product-id
name
Price
In name
column, all product names are present.
Example: 1340 GPS, 1340T GPS etc.
When I write
select top 10 * from product where contains(name,'1340');
Result 1 row 1340 GPS
but when I search
select top 10 * from product where name like '%1340%';
Then the result is 1340 GPS and 1340T GPS
.
Actually my requirement is I will use contains()
but it has to show both the rows like LIKE
operator.
How to do so :?
Please help
Thanks in advance
contains()
? – Guerrero