Sharing Tables across personal schemas

Is it possible to share tables across personal schemas? If so how do you do that? How do you grant someone access to specific tables in your schema?

The syntax will be different depending on the database type. First you need to own the table or have admin rights to the table. Then execute a statement such as:

grant select on tablename to username;

Debbie