Select distinct on blob

前端 未结 1 1197
暖寄归人
暖寄归人 2021-01-20 04:52

Is there a way to verify if the value in blob in more rows is identical in the Oracle database? The blob is the same column.

I have the size of the blob stored in an

相关标签:
1条回答
  • 2021-01-20 05:15

    I would recommend adding another column which contains the hash of the blob value. When you store the blob you also calculate the hash value, using SHA256 for example, and store that. When you later want distinct values you just use this new column.

    0 讨论(0)
提交回复
热议问题