CREATE USER

CREATE USER Statement #

CREATE USER [IF NOT EXISTS] name [SECRET value]

Create a user identified by name if it does not exist with the optional SECRET.


create user test;

show users;
[{
  "name": "test"
}]