gasilpark.blogg.se

Grant mysql
Grant mysql











grant mysql

Grant mysql how to#

Let's look at some examples of how to revoke privileges on tables in MySQL.įor example, if you wanted to revoke DELETE and UPDATE privileges on a table called contacts from a user named smithj, you would run the following REVOKE statement: REVOKE DELETE, UPDATE ON contacts FROM you wanted to revoke all permissions (except GRANT OPTION) on a table for a user named smithj, you could use the ALL keyword as follows: REVOKE ALL ON contacts FROM you had granted SELECT privileges to * (ie: all users) on the contacts table and you wanted to revoke these privileges, you could run the following REVOKE statement: REVOKE SELECT ON contacts FROM Privileges on Functions/Procedures

grant mysql

user The name of the user that will have these privileges revoked. In the case of revoking privileges on a table, this would be the table name. Object The name of the database object that you are revoking privileges for. For example: GRANT SELECT ON contacts TO to perform SELECT statements on the table. For example: GRANT ALL ON contacts TO you wanted to grant only SELECT access on the contacts table to all users, you could grant the privileges to *. Let's look at some examples of how to grant privileges on tables in MySQL.įor example, if you wanted to grant SELECT, INSERT, UPDATE, and DELETE privileges on a table called contacts to a user name smithj, you would run the following GRANT statement: GRANT SELECT, INSERT, UPDATE, DELETE ON contacts TO can also use the ALL keyword to indicate that you wish to grant all permissions except GRANT OPTION to a user named smithj. user The name of the user that will be granted these privileges. In the case of granting privileges on a table, this would be the table name. Object The name of the database object that you are granting permissions for. Grants all permissions except GRANT OPTION. Ability to perform SELECT statements on the table.Ībility to perform INSERT statements on the table.Ībility to perform UPDATE statements on the table.Ībility to perform DELETE statements on the table.Ībility to create an index on an existing table.Ībility to perform CREATE TABLE statements.Ībility to perform ALTER TABLE statements to change the table definition.Ībility to perform DROP TABLE statements.Īllows you to grant the privileges that you possess to other users.













Grant mysql