- DBA_TABLES 顯示的是數(shù)據(jù)庫中所有表(所有表DBA都可以操作)
- ALL_TABLES 顯示與當(dāng)前用戶可訪問的表
- USER_TABLES 顯示當(dāng)前用戶擁有的表
DBA_TABLES describes all relational tables in the database
ALL_TABLES describes the relational tables accessible to the current user
USER_TABLES describes the relational tables owned by the current user. This view does not display the OWNER column
在*_TABLES中,所有表名都是大寫的,可以使用upper()。