Hello All,
I have table with following columns and rows:
ID FirstName LastName
1 sam john
1 sam john
2 peter stoller
3 pinto burt
3 pinto burt
3 pinto burt
I was wondering how to write a SQL query to delete duplicate rows so that the table looks like :
ID FirstName LastName
1 sam john
2 peter stoller
3 pinto burt
Thanks
I have table with following columns and rows:
ID FirstName LastName
1 sam john
1 sam john
2 peter stoller
3 pinto burt
3 pinto burt
3 pinto burt
I was wondering how to write a SQL query to delete duplicate rows so that the table looks like :
ID FirstName LastName
1 sam john
2 peter stoller
3 pinto burt
Thanks