SHA2
Calculates the SHA-2 family of hash functions (SHA-224, SHA-256, SHA-384, and SHA-512). If the hash length is not one of the permitted values, the return value is NULL. Otherwise, the function result is a hash value containing the desired number of bits as a string of hexadecimal digits.
Analyze Syntax
func.sha2(<expr>, <expr>)
Analyze Examples
func.sha2('1234567890', 0)
+------------------------------------------------------------------+
| func.sha2('1234567890', 0)) |
+------------------------------------------------------------------+
| c775e7b757ede630cd0aa1113bd102661ab38829ca52a6422ab782862f268646 |
+------------------------------------------------------------------+
SQL Syntax
SHA2(<expr>, <expr>)
SQL Examples
SELECT SHA2('1234567890', 0);
┌──────────────────────────────────────────────────────────────────┐
│ sha2('1234567890', 0) │
├──────────────────────────────────────────────────────────────────┤
│ c775e7b757ede630cd0aa1113bd102661ab38829ca52a6422ab782862f268646 │
└──────────────────────────────────────────────────────────────────┘
Last modified April 22, 2024 at 6:20 PM EST: adding hash functions (f177d8d)