SQL> select * from table1;A          B          C
---------- ---------- ----------
a1         b1         c1
a2         b2         c2SQL> select * from table2;A          E          F
---------- ---------- ----------
a1         e1         f1
a3         e2         f2SQL> select b,c,e,f from table1,table2 where table1.a=table2.a;B          C          E          F
---------- ---------- ---------- ----------
b1         c1         e1         f1SQL> 我想是你自己搞错了。