如何在SQL中只知道表中的一个列名,从而搜索表的名称? [重复]

时间:2022-09-13 11:02:06

This question already has an answer here:

这个问题在这里已有答案:

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= '';