I'm using an Access Database and have the following question:
How is it possible to remove entire rows based on certain columns?
For example I have the following table:
Id | Name | Desc | Contact No. |
1 | XYZ | bla bla | 123456 |
2 | ABC | bla bla | 123456 |
3 | TUV | hmmmmm | 123456 |
4 | XYZ | bla bla | 123456 |
I want to remove all lines of data which have duplicate information, so in this case, rows 1 & 4. The only issue of course, is the Id, which makes the overall row unique....
How would I go about removing this? Is there some SQL code that can handle this?