Forum Replies Created

Viewing post 1 (of 1 total)

  • RE: Updation in tables

    Refer this code

    ----------------------

    CREATE TABLE #tblSource ( ID INT, GroupID INT, Name VARCHAR(10) )

    CREATE TABLE #tblTarget ( ID INT, GroupID INT, Name VARCHAR(10) )

    INSERT INTO #tblSource VALUES (1,1,'a11')

    ...

Viewing post 1 (of 1 total)