当前位置: 代码迷 >> 高性能数据库开发 >> oracle 两个左联接会错吗
  详细解决方案

oracle 两个左联接会错吗

热度:6939   发布时间:2013-02-26 00:00:00.0
oracle 两个左连接会错吗
drop table ta;
create table ta
(
fild1  varchar2(10),
fild2  varchar2(10)
);
drop table tb;
create table tb
(
fild1  varchar2(10),
fild2  varchar2(10),
fild3  varchar2(10)
);

select * from ta for update;
select * from tb for update;

select ta.fild1,ta.fild2,tb.fild3 from ta,tb
where ta.fild2=tb.fild2(+)
and ta.fild1=tb.fild1(+);
------解决方案--------------------------------------------------------
没有@
  相关解决方案