UNCOMPRESS(string_to_uncompress) uncompresses a string compressed by the COMPRESS() function. : UNCOMPRESS : Encryption Compression Functions MySQL TUTORIALS


MySQL TUTORIALS » Encryption Compression Functions » UNCOMPRESS »

 

UNCOMPRESS(string_to_uncompress) uncompresses a string compressed by the COMPRESS() function.


mysql>
mysql> SELECT UNCOMPRESS(COMPRESS('any string'));
+------------------------------------+
| UNCOMPRESS(COMPRESS('any string')) |
+------------------------------------+
| any string                         |
+------------------------------------+
row in set (0.00 sec)

mysql>
mysql> SELECT UNCOMPRESS('any string');
+--------------------------+
| UNCOMPRESS('any string') |
+--------------------------+
| NULL                     |
+--------------------------+
row in set, warning (0.00 sec)

mysql>



Leave a Comment / Note


 
Verification is used to prevent unwanted posts (spam). .

Follow Navioo On Twitter

MySQL TUTORIALS

 Navioo Encryption Compression Functions
» UNCOMPRESS