SQL> SELECT COUNT (*) as cnt FROM ALL_TABLES WHERE table_name = UPPER('your_table'); CNT ---------- 1
返回1表示存在,0表示不存在。
--END-- 2020-01-09 14:27