I need to find a result from all columns of a table starting with a specific value, regardless the column and assuming I don't know the columns's name, something like this:
$sql = "SELECT * FROM $myTable WHERE AllTheColumns LIKE '{$theValue}%'";
I know after the "WHERE" I have to specify the column name, but any other solution will be ok (if exists).