User Privilege Oracle PLSQL Tutorial

You can access tables in another schema by specifying the schema name followed by the table.
You can avoid having to enter the schema name by creating a synonym for a table.

CREATE SYNONYM customers FOR store.customers;