I have a field in one of my tables that contains this string:
!\"#¤%&/()=?´`?=)(/&%¤#\"!\\\'\\\'\"\'
(Only for test purposes ofcour
Are you using PHP? If so, you may try something like:
$a = mysql_real_escape_string('%!"#¤%&/()=?´`?=)(/&%¤#"!\'\'"\'%'); $query_string = "SELECT * FROM mytable WHERE `column` LIKE '$a'";
Would that solve your problem?