有关oracle中关于连接查询的问题?(着急!!!)
SELECT ''
from stock_adjust a,stock_check_detail b
where a.stock_code(+)=b.stock_code
and a.product_code(+)=b.product_code
and a.seq_order(+)=b.seq_order
and a.seq_order='1' ;
在这个查询语句中我想查询出b表与a表中不相匹配的行出来,类似于SQL-SERVER中的RIGHT JOIN(右连接查询),这个问题很急。