ORACLE 查找字段在哪些表里存在

查找不是主键的字段在哪些表里存在:

select owner, table_name
from dba_tab_columns
where lower(column_name)='firstname'; 查找主键的字段在哪些表里存在:
select owner, table_name
from dba_tab_columns
where column_name='firstname';
上一篇:Chapter 17_2 备忘录函数


下一篇:内存VSS/RSS/PSS/USS名词解释