Three levels of database privileges:
GRANT connect TO smith; GRANT resource TO jones;
Table-level privileges:
GRANT [select|insert|delete|update(col-names)] ON table_name TO [user|PUBLIC]; REVOKE [select|insert|delete|update(col-names)|ALL] ON table_name FROM [user|PUBLIC]; Examples: grant select on customers to public; grant insert on orders to jones; grant update(quantity) on products to jones,smith; revoke all on customers from jones;