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

2025-04-13 01:18:26
推荐回答(1个)
回答1:

表名和字段名中包含特定值吗
select * from all_tables where table_name like '%值%';
select * from all_tab_cols where COLUMN_NAME like '%值%';