+1 vote
in Oracle by
Q. Write a query to display a list of tables owned by the user.

1 Answer

0 votes
by

Ans is

SELECT tablespace_name, table_name FROM user_tables;

...