Viewing post 1 (of 1 total)
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)
November 30, 2009 at 10:46 am
#1085563