This site had helped me a lot in the past, but now I am lost. Thanks in advance for your guidance.
I have a MySQL table that contains a Binary value, like the exampl
The last posting from jixiang pointed me into the right direction for searching a binary field:
SELECT * FROM test WHERE yourBinaryColumn = x'binarystuffdata';
This works for me...