标签: oracle-sqldeveloper
如何在oracle sql server中使用子查询连接两个表? 我试过这种方式
select s.*,p.* from salary s cross join (select p.* from pension p where p.sal=21);
答案 0 :(得分:1)
我相信你需要命名子查询:
select s.*,p.* from salary s cross join (select * from pension where sal=21) p