完全外联?什么意思啊!!?我估计oracle应该有,但是名词可能不一样!!

解决方案 »

  1.   

    An outer join extends the result of a simple join. An outer join returns all rows that
    satisfy the join condition and also returns some or all of those rows from one table
    for which no rows from the other satisfy the join condition.
      

  2.   

    select * from a full out join b
    返回:
    所有a,b的记录,再加上不满足连接条件的记录。
      

  3.   

    忘了加条件了:
    select * from a full out join b on join_condition
      

  4.   

    jiezhi(西域浪子)你说的这种方法是SQL server里面的用法吧?
    oracle中好像不行哦
      

  5.   

    反正msql中的full outter join  …… on 方式是不行的