Collections:
CRC32() - Cyclic Redundancy Check 32-Bit
How to calculate the 32-bit CRC (Cyclic Redundancy Check) value using the CRC32() function?
✍: FYIcenter.com
CRC32(str) is a MySQL built-in function that
calculates the 32-bit CRC (Cyclic Redundancy Check) value
of a given character string and returns it as an integer.
For example:
SELECT CRC32('MySQL'), HEX(CRC32('MySQL'));
-- +----------------+---------------------+
-- | CRC32('MySQL') | HEX(CRC32('MySQL')) |
-- +----------------+---------------------+
-- | 3259397556 | C24675B4 |
-- +----------------+---------------------+
SELECT CRC32('123456789'), HEX(CRC32('123456789'));
-- +--------------------+-------------------------+
-- | CRC32('123456789') | HEX(CRC32('123456789')) |
-- +--------------------+-------------------------+
-- | 3421780262 | CBF43926 |
-- +--------------------+-------------------------+
Reference information of the CRC32() function:
CRC32(str): crc Calculates the 32-bit CRC (Cyclic Redundancy Check) value of a given character string and returns it as an integer. Arguments, return value and availability: str: Required. The character string to be processed. crc: Return value. The 32-bit CRC value as an integer. Available since MySQL 4.0.
⇒ MD5() - Calculating MD5 Hash
⇐ COMPRESS() - Compressing Data
2024-07-15, 1330🔥, 0💬
Popular Posts:
How To Recover a Dropped Index in Oracle? If you have the recycle bin feature turned on, dropped ind...
What Are the Underflow and Overflow Behaviors on FLOAT Literals in SQL Server Transact-SQL? If you e...
How to execute statements in loops in SQL Server Transact-SQL? How to use WHILE ... loops? You can u...
How To List All Stored Procedures in the Current Database in SQL Server Transact-SQL? If you want to...
How To Insert New Line Characters into Strings in SQL Server Transact-SQL? If you want to break a st...