如何使用子查询连接两个表?

时间:2014-08-01 18:21:17

标签: oracle-sqldeveloper

如何在oracle sql server中使用子查询连接两个表? 我试过这种方式

select s.*,p.* from salary s 
cross join (select p.* from pension p where p.sal=21);

1 个答案:

答案 0 :(得分:1)

我相信你需要命名子查询:

select s.*,p.* from salary s 
cross join (select * from pension where sal=21) p