Yes. You can refer it by schema.tablename
eg:
select * from schema1.table1
select * from schema2.table2
select * from schema3.table3
If you create tables/views by USER1, then you are not necessary to refer by schema.tablename (select * from table1 --> will do). But other users have to use schema.tablename.
Regards
Prakash