CREATE USER - MariaDB Knowledge Base
https://mariadb.com/kb/en/create-userTo use it, you must have the global CREATE USER privilege or the INSERT privilege for the mysql database. For each account, CREATE USER creates a new row in mysql.user (until MariaDB 10.3 this is a table, from MariaDB 10.4 it's a view) or mysql.global_priv_table (from MariaDB 10.4) that has no privileges.
MariaDB: CREATE USER statement - TechOnTheNet
www.techonthenet.com › mariadb › usersThe CREATE USER statement creates a database account that allows you to log into the MariaDB database. Syntax The syntax for the CREATE USER statement in MariaDB is: CREATE USER user_name IDENTIFIED BY [ PASSWORD ] 'password_value'; Parameters or Arguments user_name The name of the database account that you wish to create. PASSWORD Optional.
CREATE USER - MariaDB Knowledge Base
mariadb.com › kb › enCREATE USER Syntax. Description. The CREATE USER statement creates new MariaDB accounts. To use it, you must have the global CREATE USER... OR REPLACE. IF NOT EXISTS. When the IF NOT EXISTS clause is used, MariaDB will return a warning instead of an error if the specified... Authentication ...