Hello, basically I have two tables:
People
Orders
Now I want to grant the first person in "Peoples" with all privileges, now I've tried to do this:
GRANT ALL
ON Orders
TO {testUser |PUBLIC |role_name}
[WITH GRANT OPTION];
Doesn't work (because they are technically not a user, therefore, cannot do anything anyway) SO, I tried to make a new user in my database using this:
CREATE USER 'testUser@localhost' IDENTIFIED BY 'mypass'
Which returns: "Access denied; you need (at least one of) the CREATE USER privilege(s) for this operation"
Even though I'm signed in as the administrator, does anyone have any ideas?
Thanks :)