Forum Replies Created

Viewing post 1 (of 1 total)

  • RE: Symmetric Except

    Another way:
    select coalesce ( tbl1.a, tbl2.a ) as a
    from tbl1 full outer join tbl2 on tbl1.a = tbl2.a
    where tbl1.a is null or tbl2.a is null

Viewing post 1 (of 1 total)