Please start any new threads on our new
site at https://forums.sqlteam.com. We've got lots of great SQL Server
experts to answer whatever question you can come up with.
Author |
Topic |
esthera
Master Smack Fu Yak Hacker
1410 Posts |
Posted - 2006-03-16 : 06:15:15
|
is there any easy way to query my table and get rid of duplicate entries (where firstname and lastname are the same) |
|
madhivanan
Premature Yak Congratulator
22864 Posts |
Posted - 2006-03-16 : 06:44:23
|
Runt thisSelect * from yourTable where firstname=lastnameDo you want to delete those rows?MadhivananFailing to plan is Planning to fail |
 |
|
esthera
Master Smack Fu Yak Hacker
1410 Posts |
Posted - 2006-03-16 : 08:11:16
|
i want to delete one of them but not both -- any way to do that with an sql statement |
 |
|
madhivanan
Premature Yak Congratulator
22864 Posts |
|
|
|
|