I am trying to write a sql statement that can pull a unique record by comparing it's different variations
For example, I have a unique record of a movie let's say Bad Boys II.
But users do search for; 
 bad boys 2
 badboys2 >
 badboys II (2003) 
 bad boys 2 (2003)
 etc.
.... LOWER(movie_title) LIKE '%$search_query%'
The above query does not return the unique record i was hoping to get. Any help will be appreciated
 
     
    