I have a table with rows containing binary data as seen below. (I would copy and paste but it is huge)
When I take the data from the first row and substitute it for the variable 'x' in the below query I receive no results despite it clearly existing in that table.
SELECT *
FROM table
WHERE Logo = x
I created a mock table to test this type of query which contains these two values;
0x123456 0x7890
When I execute the following query I am greeted with the correct result.
SELECT *
FROM TABLE
WHERE Column = 0x123456