如何查询oracle一个数据库中包含有某个特定值的所有表及字段名

如题所述

--我这里说的字段名跟列 是同一个意思

select column_name,
table_name,data_type ,data_length,data_precision,data_scale from user_tab_columns where column_name='字段名';
--根据字段名查出相关的表名出来。记录下来
--然后对查出来的表进行查询,找到含这内容字段的表
select * from 表名 where 字段名='xiaoming'
温馨提示:内容为网友见解,仅供参考
无其他回答
相似回答