You only need a few lines of SQL code:
Here is an example:
SELECT * FROM table WHERE column LIKE 'search_string%';
SELECT title, genre, etc FROM movies WHERE title LIKE 'Gremlins%';
The direct above code will select the title, genre, and etc from table movies where the search was Gremlins.
It will output somethign like this:
Gremlins
Gremlins 2
Gremlins 3
Gremlins Attack
Gremlins for President
If you add a % before the search string, the it will report everything with the word Gremlins in it.
Hope that helps, becuase I doubt anyone will write this entire code for you.