MySQL query String contains
I've been trying to figure out how I can make a query with MySQL that checks if the value (string $haystack ) in a certain column contains certain data (string $needle), like this:
mysql_query("
SELECT *
FROM `table`
WHERE `column`.contains('{$needle}')
");
In PHP, the function is called substr($haystack, $needle), so maybe:
WHERE substr(`column`, '{$needle}')=1
You can use this query to solve contains mysql:
Query:
mysql_query("SELECT *
FROM `table`
WHERE `column` LIKE '%{$needle}%' ");