My value: ingrid lovesc cops and taxi
I have a mysql table with a field called “title” which has values like:
value one: taxi driver bikini
value two: john smith airoplane
value three: taxi driver cops
I want a query that sounds something like this:
SELECT * FROM table WHERE myvalue is the closest to a value in "title"
Basiclay i want to match my value tu the closest one in the title field.
Try add a full-text index into title,
so you can perform full search based on
ingrid lovesc cops and taxi,and mysql allow sort by relevancy,
such as http://dev.mysql.com/doc/refman/5.0/en/fulltext-natural-language.html`