My goal is to search column A for string B and if it is found, return which row it was found in, and if it wasn’t found, I would need to know that as well in order to take a different course of action.
My current PHP code:
$string = "teststring";
$searchquery = "SELECT *
FROM AllStringsTable
WHERE `Column_A` LIKE '$string'"
$searchresult = mysql_query($searchquery) or die(mysql_error());
$row = mysql_fetch_row($searchresult);
echo "The returned row was: $row";
This just breaks and does nothing, so I think I’m way off here. Also, I have read that for exact string searching that doesn’t require wildcard substrings, etc, LIKE is not needed. So I’m not sure what I would use instead…
You’re almost there. You need the
%wildcards: