Collections:
UNCOMPRESS() - Uncompressing Data
How to uncompress (restore) compressed data using the UNCOMPRESS() function?
✍: FYIcenter.com
UNCOMPRESS(str) is a MySQL built-in function that
uncompresses a given compressed byte string using the default LZ77 compression algorithm.
For example:
SELECT UNCOMPRESS(x'37000000789C738BF44C4ECD2B492DD24BCECFD57123960700279D13DD'); -- +---------------------------------------------------------------------------+ -- | UNCOMPRESS(x'37000000789C738BF44C4ECD2B492DD24BCECFD57123960700279D13DD') | -- +---------------------------------------------------------------------------+ -- | FYIcenter.com,FYIcenter.com,FYIcenter.com,FYIcenter.com | -- +---------------------------------------------------------------------------+
Reference information of the UNCOMPRESS() function:
UNCOMPRESS(bin): str Uncompresses a given compressed byte string using the default LZ77 compression algorithm. Arguments, return value and availability: bin: Required. The byte string to be uncompressed. str: Return value. The uncompressed byte string. Available since MySQL 4.1.
Related MySQL functions:
⇒ UNCOMPRESSED_LENGTH() - Uncompressed Data Length
⇐ STATEMENT_DIGEST_TEXT() - Calculating Statement Digest
2024-12-18, 1814🔥, 0💬
Popular Posts:
How to download and install Microsoft .NET Framework Version 2.0 in SQL Server? .NET Framework Versi...
Where to find answers to frequently asked questions on PHP Connections and Query Execution for MySQL...
What To Do If the StartDB.bat Failed to Start the XE Instance in Oracle? If StartDB.bat failed to st...
What is SQL Server Transact-SQL (T-SQL)? SQL Server Transact-SQL, also called T-SQL, is an extension...
How To Connect the Oracle Server as SYSDBA in Oracle? This is Step 4. The best way to connect to the...