gpt4 book ai didi

sql - Oracle SQL : How do I find the table name given the column names?

转载 作者:行者123 更新时间:2023-12-04 03:01:00 25 4
gpt4 key购买 nike

如果我知道一个表的每一列的名称,但不知道该表的名称,那么如何找到所需的表的名称呢?

最佳答案

基于@Roobie的解决方案,以下代码将在您有权访问的所有架构中进行搜索,以防表不在您自己的架构中。还添加了不区分大小写的匹配。

SELECT owner, table_name
FROM all_tab_columns
WHERE UPPER(column_name) = UPPER('MYCOL');

关于sql - Oracle SQL : How do I find the table name given the column names?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24287546/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com