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

  • md5_number(blob = BLOB): Returns the MD5 hash of the blob as a HUGEINT.

Usage

md5_number(string)

Arguments

string

VARCHAR

Value

UHUGEINT

Overloads

  • md5_number(string = VARCHAR)

  • md5_number(blob = BLOB)

SQL examples

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