If the ID is unique then you should be able to identify the duplicates like this.
SELECT [IDField], Count([IDField])),
FROM [MyTable]
GROUP BY [IDField]
HAVING Count([IDField])>1
If the ID is unique then you should be able to identify the duplicates like this.
SELECT [IDField], Count([IDField])),
FROM [MyTable]
GROUP BY [IDField]
HAVING Count([IDField])>1
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks