> ## 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/commands/access-control/alter-role",
  "feedback": "Description of the issue"
}
```

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

</AgentInstructions>

> Reference and syntax for the ALTER ROLE command.

# ALTER ROLE

Updates the specified role.

## ALTER ROLE OWNER TO

Change the owner of a role.

### Syntax

```sql theme={"theme":{"light":"github-light","dark":"github-dark"}}
ALTER ROLE <role> OWNER TO <user>
```

### Parameters

| Parameter | Description                                                          |
| :-------- | :------------------------------------------------------------------- |
| `<role>`  | Name of the role to change the owner of.                             |
| `<user>`  | The new owner of the role. Can be either a user name or a role name. |
