Forum Replies Created

Viewing post 1 (of 1 total)

  • RE: Get Rid of Duplicates!

    I use this:

    DELETE FROM tblUser tu1

    WHERE tu1.intUserID > ANY (SELECT intUserID

    FROM tblUser tu2

    WHERE tu2.strUserName = tu1.strUserName

    AND tu2.strFamilyName = tu1.strFamilyName)

Viewing post 1 (of 1 total)