VeloDB Cloud
SQL Reference
SQL Functions
Scalar Functions
Encrypt Digest Functions
MD5

MD5

description

Calculates an MD5 128-bit checksum for the string

Syntax

MD5( <str> )

Parameters

parameterdescription
<str>The MD5 value to be calculated

Return Value

Returns the MD5 value of a string.

Examples

select md5("abc");
+----------------------------------+
| md5('abc')                       |
+----------------------------------+
| 900150983cd24fb0d6963f7d28e17f72 |
+----------------------------------+