QUESTION POSED ON: 25 October 2005
I have a table similar to this:
cust_id trans_dt
a0001 12/05/2005
a0002 12/05/2005
a0001 12/05/2005
The table does not have a ROWID or identifier field. I would like to delete the duplicate records and have the results formatted like this:
a0001 12/05/2005
a0002 12/05/2005
-----------------------
In Oracle there is ROWID to solve this problem. Is there a way to resolve this in SQL Server?
|