This question already has an answer here:
这个问题在这里已有答案:
- Search an Oracle database for tables with specific column names? 5 answers
- 在Oracle数据库中搜索具有特定列名的表? 5个答案
I'm trying to find a table containing a column that I know the name to. Is there some way to do a table search using only the name of the column?
我正在尝试找到一个包含我知道名称的列的表。有没有办法只使用列的名称进行表搜索?
1 个解决方案
#1
0
In oracle
在oracle
select * from user_tab_columns where column_name= '';
#1
0
In oracle
在oracle
select * from user_tab_columns where column_name= '';