They are all unique records, but there is lots of repetition across all three columns
I've got User ID, Badge ID, and BadgeDate
(Number, Number, and Datetime, respectively)
Would I do this:
SELECT * INTO AllBadges
FROM
(
SELECT UserID, BadgeID, WinDate FROM UserBadges1
UNION ALL
SELECT...