> ## 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/upper",
  "feedback": "Description of the issue"
}
```

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

</AgentInstructions>

> Reference material for UPPER function

# UPPER

Converts the input string to uppercase characters. Note that Firebolt uses the `POSIX` locale, therefore `upper` only converts the ASCII characters “a” through “z” to uppercase. Non-ASCII characters remain unchanged.

## Syntax

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

## Parameters

| Parameter      | Description                                         | Supported input types |
| :------------- | :-------------------------------------------------- | :-------------------- |
| `<expression>` | The string to be converted to uppercase characters. | `TEXT`                |

## Return Type

`TEXT`

## Example

The following example converts a game player's username from lowercase to uppercase characters:

```sql theme={"theme":{"light":"github-light","dark":"github-dark"}}
SELECT
	UPPER('esimpson') as username
```

**Returns**: `ESIMPSON`

Because Firebolt uses the `POSIX` locale, non-ASCII characters are not uppercased:

```sql theme={"theme":{"light":"github-light","dark":"github-dark"}}
SELECT UPPER('München')
```

**Returns**: `MüNCHEN`
