Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个使用 XML 输入生成 XML 表的查询,我给该表一个别名“XMLalias”。如何在其他一些选择语句中查询该表,该语句是同一批次的一部分。
我想做一些类似“select * from XMLalias”的事情。
我是甲骨文的新手,所以如果这真的很简单,请原谅。
谢谢。
我不确定你需要什么,因为我认为你想要的是这两个之一:
select * from (select * from XMLalias ) insider where insider.col1 /*.....*/
或者你想要这样的东西
select * from XMLalias a, XMLalias b where a.key_col=b.other_key_col and a.col1 = /*...... */ and b.col2 = /*...... */