i have a table where i am saving images as blob
now the issue is, how can i get the size of the blob in each tuple.
is there any query to do so?
Try
SELECT OCTET_LENGTH(blob_content) FROM test_blob WHERE id = 1
Use SELECT OCTET_LENGTH(blob_tablename) FROM...
SELECT OCTET_LENGTH(blob_tablename) FROM...