i got a table users (id,first_name,last_name,...) i want to find duplicate users in that table (users which has the same first_name AND the same last_name).
let's say my data is :
1;bill;campton 2;sarah;connor 3;bill;campton i need to get
1;bill;campton;3;bill;campton i dont want to get
1;bill;campton;3;bill;campton 3;bill;campton;1;bill;campton How could i do that? I use SQL Server 2005
thank you