
MariaDB Cookbook
By :

Roles are an alternative way of managing permissions. They are used to give users permissions as a group instead of individually. For example, all users from the finance department could be assigned to a finance
role with permissions specific to the tasks they need to perform.
Roles were first introduced in MariaDB 10.0.
To create an example role and demonstrate how roles work, perform the following steps:
Launch the mysql
command-line client and connect to our MariaDB database server.
Create a test
database, if it doesn't exist, using the following statement:
CREATE DATABASE IF NOT EXISTS test;
Run the following command to create a role:
CREATE ROLE read_only;
Grant the role some permissions using the following statement:
GRANT SELECT ON test.* TO read_only; GRANT USAGE ON test.* TO read_only;
Display the permissions granted to the role using the following statement:
SHOW GRANTS FOR read_only;
The output of the preceding statement is...
Change the font size
Change margin width
Change background colour