Skip to contents
  • md5(string = VARCHAR): Returns the MD5 hash of the string as a VARCHAR.

  • md5(blob = BLOB): Returns the MD5 hash of the blob as a VARCHAR.

Usage

md5(string)

Arguments

string

VARCHAR

Value

VARCHAR

Overloads

  • md5(string = VARCHAR)

  • md5(blob = BLOB)

SQL examples

md5('abc')
md5('\xAA\xBB'::BLOB)