select   table_name   from   cat   where   TABLE_TYPE='TABLE';

所有用户表  
select   table_name   from   user_tables;  
   
所有表(包括系统表)  
select   table_name   from   all_tables;  

红色字母一定大写。