A Gentle Introduction to
SQL
GISQ: How to GRANT and REVOKE
Please "Tidy up" after you have finished.
GRANT SELECT allows others to read your data.
REVOKE removes permission.
GRANT SELECT allows others to read your data.
You can also GRANT INSERT, DELETE, UPDATE, CREATE, DROP, GRANT, INDEX and ALTER
UPDATE user SET grant_priv='Y' where user='andrew'; FLUSH PRIVILEDGES;
GRANT SELECT ON cia TO scott
oracle
access
mysql
REVOKE removes permission.
REVOKE SELECT ON cia FROM scott
oracle
access
mysql