You need to find duplicate account’s in an Account table. The Account table has 15 columns in it. What is the problem with this query?
SELECT*
FROM Account
WHERE
CreateDate>'2/1/2013'
GROUPBY AccountID
HAVING
COUNT(AccountID)>1
Thanks,
RT
You need to find duplicate account’s in an Account table. The Account table has 15 columns in it. What is the problem with this query?
SELECT*
FROM Account
WHERE
CreateDate>'2/1/2013'
GROUPBY AccountID
HAVING
COUNT(AccountID)>1
Thanks,
RT