I have a table of names in my database, and I would like to conduct a fuzzy search on it, for example, my database contains:
Name ID
John Smith 1
Edward Smith 2
Gabriel Gray 3
Paul Roberts 4
At that moment, when I search the database through python, I can only perform an exact match search. But I would like to be able to do a fuzzy search, where I can find the name "blacksmith" and return John Smith and Edward Smith.
source
share