Syntax
COMPRESS(str)
Purpose
Compresses a string and returns the result as a binary string. You can use the UNCOMPRESS function to decompress the result.
Examples
obclient> SELECT COMPRESS('abc');
+-----------------+
| COMPRESS('abc') |
+-----------------+
| x?KLJ M' |
+-----------------+
1 row in set
