I've stored an ArrayList of longs (ID's) into a Blob column. (followed question: BLOB vs. VARCHAR for storing arrays in a MySQL table)
That works, but now I've a problem: how can I search into that BLOB?
Imagine I've stored this numbers into the BLOB: 1,2,3,4 And what I want to do is:
SELECT * FROM table WHERE blob_column CONTAINS 3
Is it possible?