How would the best way to approach this problem be?
- Search for user by first name, where the parameter is a string. The result should display a list of the 10 users whose first name is closest to the searched string.
Clearly there are different ways to approach this one. Is there any mysql functionality that does this already?
Should I just query all my rows and run some kind of search function?