本文介绍了在查询中动态提供表名的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

嗨Oracle专家,

我有一个名为OtherTables的表,它存储其他表的ID及其各自的表名。


OtherTables( ID,tableID,tableName)


ID是OtherTables表的键。


我想从存储tableID的表中进行选择在OtherTables表中。我有包含此表的OtherTables行的ID,我想从中选择。


我希望这是可能的,并且有人能够帮助在一个查询中获得解决方案。


提前谢谢。

Hi Oracle experts,
I have a table called, say, OtherTables which stores IDs of other tables and their respective table names.

OtherTables(ID, tableID, tableName)

ID is the key of the OtherTables table.

I want to select from a table whose tableID is stored in the OtherTables table. I have the ID of the OtherTables row that contains this table that I want to select from.

I hope this is possible and that someone would be able to help get a solution in one query.

Thanks in advance.

推荐答案




这篇关于在查询中动态提供表名的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-27 06:43