--- title: "SHOW ROLES" description: "`SHOW ROLES` lists the roles available in Materialize." menu: main: parent: 'commands' --- `SHOW ROLES` lists the roles available in Materialize. ## Syntax ```mzsql SHOW ROLES [ LIKE | WHERE ] ``` Option | Description ---------------------------|------------ **LIKE** \ | If specified, only show roles whose name matches the pattern. **WHERE** | If specified, only show roles that meet the condition(s). ## Examples ```mzsql SHOW ROLES; ``` ```nofmt name ---------------- joe@ko.sh mike@ko.sh ``` ```mzsql SHOW ROLES LIKE 'jo%'; ``` ```nofmt name ---------------- joe@ko.sh ``` ```mzsql SHOW ROLES WHERE name = 'mike@ko.sh'; ``` ```nofmt name ---------------- mike@ko.sh ``` ## Related pages - [`CREATE ROLE`](../create-role) - [`DROP ROLE`](../drop-role)