oracle中怎么将查询结果作为表名继续查询???

2025-03-07 00:31:18
推荐回答(3个)
回答1:

select a.* from (select * from b) a

回答2:

select * from (select * from 表名) as bb

回答3:

你是说子查询吧
select B.id from (select * from A where id<200) B
取个别名就行了