You can save the hash or checksum of the blob object in another column and use your own separate operator for this.
Example:
SELECT i from Table WHERE id IN (
SELECT id FROM (
SELECT MIN(id) AS id, hash_of_i FROM Table GROUP BY hash_of_i
) t
)
I'm sure you can write this SQL more elegantly, but it will give you an idea.
- , Distinct ( , ).
2 - , ,