What parts of the database can have different authorisations on them?
What commands are used to change a user’s privileges
grant or revoke
How do we give users on a remote host access?
‘username’@’%’
Gives user access on any host
How do you allow users to pass on authority?
after user list put ‘with grant option’ command.
What does restrict do?
Prevents revoking of rights if cascading revokes are required.
What are the selectors for parts of a database to apply the rights on?
. => all of the databases
test_db.* => all tables in the database test_db
test_db.person => person table in test_db
(person.id) on test_db.person => id column in person