select table_name from cat where TABLE_TYPE='TABLE';
所有用戶表
select table_name from user_tables;
所有表(包括系統表)
select table_name from all_tables;
select table_name from user_tables;
所有表(包括系統表)
select table_name from all_tables;
紅色字母一定大寫。