Forum Replies Created

Viewing 3 posts - 1 through 4 (of 4 total)

  • RE: Row Comparision of 2 Tables

    Hi shield_21-san

    Henji(Reply) Arigatou Gozaimashita !

    By using Your hint of using row_number I changed my code as follows,

    SELECT COALESCE(t1.file_no,t2.file_no) AS file_no,

    COALESCE(t1.item_no,t2.item_no) AS item_no,

    t1.name_1,t2.name_1

    FROM (SELECT ROW_NUMBER() OVER (PARTITION BY file_no,item_no ORDER...

  • RE: Row Comparision of 2 Tables

    Hi SSC Rookie

    Assume that tables are already populated, then how can i achieve the same results ?

    Thanks in Advance

  • RE: Row Comparision of 2 Tables

    I tried the code and it worked.

    Thanks a lot !

    One more thing, assume that tbl1 & tbl2 are already populated then how this result can be achieved ?

Viewing 3 posts - 1 through 4 (of 4 total)