Have a column of actors full name, need to make a query for web users to make search on the basis of only first name or full name. Can I do this through query in mysql database, for e.g.
full name is Jhony Ibraham
can I retrieve his record with the first name only 'Jhony'
SELECT * FROM actors WHERE name = 'Jhony';
It do not retrieve any record
SELECT * FROM actors WHERE name = 'Jhony Ibraham';
this query do, but require exact and full name. Which will be hard for web users to remember or may they don't know the full name.