Forum Replies Created

Viewing post 1 (of 1 total)

  • RE: Deleting Duplicate Records Made Easy in 2005

    It is easy to delete records by considering two colmns

    create table #Test

    (EmpID VARCHAR(8),

    EmpName varchar(50))

    insert into #Test VALUES('abc','Daya')

    insert into #Test values('abc','Daya')

    insert into #Test values('def','Daya')

    ;WITH Emp AS (SELECT ROW_NUMBER ( ) OVER...

Viewing post 1 (of 1 total)