> ## Documentation Index
> Fetch the complete documentation index at: https://docs.firebolt.io/llms.txt
> Use this file to discover all available pages before exploring further.

<AgentInstructions>

## Submitting Feedback

If you encounter incorrect, outdated, or confusing documentation on this page, submit feedback:

POST https://docs.firebolt.io/feedback

```json
{
  "path": "/reference-sql/functions-reference/string/md5-number-lower64",
  "feedback": "Description of the issue"
}
```

Only submit feedback when you have something specific and actionable to report.

</AgentInstructions>

> Reference material for MD5_NUMBER_LOWER64 function

# MD5_NUMBER_LOWER64

Represent the lower 64 bits of the MD5 hash value of the input string as `BIGINT`.

## Syntax

```sql theme={"theme":{"light":"github-light","dark":"github-dark"}}
MD5_NUMBER_LOWER64(<expression>)
```

## Parameters

| Parameter      | Description                                                             | Supported input type |
| :------------- | :---------------------------------------------------------------------- | :------------------- |
| `<expression>` | The string to calculate the MD5 hash value on and represent as `BIGINT` | `TEXT`               |

## Return Type

`BIGINT`

## Example

The following example represents the username `esimpson` as a `BIGINT`:

```sql theme={"theme":{"light":"github-light","dark":"github-dark"}}
SELECT
	MD5_NUMBER_LOWER64('esimpson') AS username;
```

**Returns**: `624,533,696,996,866,075`
