I got problem when search data from database like this:
I had 1 record in database like this:
product.name = LED Backlight Square 6", 15W, E27, Golden Light - TL02-C615W
This is my query:
Keywords: LED Backlight Square
SQL:
SELECT * FROM product WHERE product.name LIKE "%led%" AND product.name LIKE "%blacklight%" AND product.name LIKE "%square%"
The result is empty.
Where is my problem?