I have this mysql query which searches for a specific word. For example lets make a search for Killzone Shadow Fall(stored in a variable):
select * from games where title like 'Killzone Shadow Fall'
It returns empty. Though this entry exist in the database as 'Killzone: Shadow Fall'
What should be done in order to return 'Killzone: Shadow Fall' when someone searches for 'Killzone Shadow Fall'?