I have a string "Hello Help Me, Stackover flow, Google users, Google Plus, ".
and in my database table I have
ID TITLE
-- -----
1. Stackover flow
2. Google Plus
3. Help Me
4. Another Title
5. Hey World
I need to get IDs 1, 2, 3 using MySQL query, because the string contain those words.
Hows it possible in MySQL
EDIT
select ID, post_title,
from wp_posts
where 'Hello Help Me, Stackover flow, Google users, Google Plus,' like concat('%', post_title, '%') and post_type = 'mediawords';