under the same schema, I got different number of tables from the following two queries:
select object_type,count(*) from user_objects group by object_type;
output: i got 17 for table from object_type column.
another query:
select count(*) from user_tables;
output:
13 rows selected.
Can someone tell me why I got two different numbers?