what is your schema name?
you can find out the schemas in the database by running below SQL statement
select username from dba_users;
then you can find more detail about your table from your schema
let's say your schema name is schema1 and the table name is table1, then your query will be as follows
select * from schema1.table1;