PHP mysql WHERE length is longer than 1

So, I want to show only the results when the BLOB length is greater than 1.

I was wondering if anyone could help

+5
source share
1 answer

Try the following:

SELECT * FROM your_table
WHERE OCTET_LENGTH(blob_field) > 1
+10
source

All Articles