First, I was search around here but no answer according to my need. Maybe wrong keyword I search 🙂
Example data from row title on my database.
Stack OverflowStack ExchangeI love Stack Overflow
Statement
SELECT title
FROM table
WHERE
(
title LIKE '%keyword%'
)
Question
What is the correct statement to display 1,2 & 3 if the keyword is Stack Overflow?
When I use LIKE '%keyword%' it’s only return row number 1
If your table is
MyISAM, you can create aFULLTEXTindex on it and use