I have a table where product name are saved. I want to execute a select query statement where 60% or more results is matching
For example: If somebody types "verifone 500",
then the product:
1) verifone vx500
2) verifone5
3) verifon00
4) verifone 50"
should be matched as they are 60% or more than same as searched product. I have tried this code
select `product_name` from product_data where `product_name` LIKE '%verifone 500%'
but not getting desired result.
Hope any body can help?