select *
from dba_objects db
where db.object_type = 'TABLE'
and db.object_name like '%INTERFACE%'
本文介绍了一种使用SQL从数据库中筛选包含特定字符串'INTERFACE'的所有表格的方法。通过执行特定的SQL查询来展示如何检索所有类型为'TABLE'且名称中包含'INTERFACE'的对象。
select *
from dba_objects db
where db.object_type = 'TABLE'
and db.object_name like '%INTERFACE%'

被折叠的 条评论
为什么被折叠?