Reputation: 1
I have three column names, all in one table. Which returns 96 rows. Im trying to use a Minus statement and Join statement to see if there are any duplicates in the database/other tables. The 3 columns are in 3 seperate tables so i am trying to use a Minus and Join statement to get a number of rows that are duplicates. Can anyone help? First time user.
Upvotes: 0
Views: 119
Reputation: 1597
AFAIK, SQL Server does not support MINUS. Use EXCEPT instead.
Upvotes: 1