Let's say I have a MySQL table with four columns:
ID DRIVER_ID CAR_ID NOTES (NULL for most rows)
I have a bunch of duplicate rows where DRIVER_ID and CAR_ID are the same. For each pair of DRIVER_ID and CAR_ID, I want one row. If one of the rows in the set has non-NULL NOTES, I want that one, but otherwise it doesn't matter.
so if I have:
ID | DRIVER_ID | CAR_ID | NOTES
1 1 1 NULL
2 1 1 NULL
3 1 2 NULL
4 1 2 NULL
5 2 3 NULL
6 2 3 NULL
7 2 3 NULL
8 2 3 hi
9 3 5 NULL
I want to keep the following IDs: 9, 8, and then one each of [3,4] and [1,2].
It's a huge table, and the clunky methods I've tried are insanely slow, to the point where I'm sure I'm going about it all wrong. How can I efficiently a) select the list of IDs to delete? b) delete them in the same query?
(And yes, I know the deal with composite keys. That's not an issue here.)
EDIT: Sorry, forgot to specify that this was MySQL.
Some of the stuff I've tried so far:
select ID, COUNT(DRIVER_ID) rowcount from CARS_DRIVERS group by CAR_ID,DRIVER_ID HAVING rowcount > 1;
will get me one ID per group. It doesn't necessarily leave the row with NOTES if there is one, though. It will also only get me one ID per duplicate group. There are some cases where there are 20+ duplicate combos, so I would need to iterate that over and over to whittle each group down to a single row.
select distinct t1.ID from CARS_DRIVERS t1 where exists (select * from CARS_DRIVERS t2 where t2.CAR_ID = t1.CAR_ID and t2.DRIVER_ID = t1.DRIVER_ID and t2.id > t1.id);
This is much slower, and still doesn't really address the NOTES issue. It does have the advantage of getting the oldest row for each group, which, if I can't isolate on the NOTES field easily, could be a proxy for that. If a row in a set has NOTES, I believe it's always the oldest one (one with the lowest ID), but I'm not certain.
Some additional context: DRIVER_ID and CAR_ID are not the real column names, and there are other columns in the table. I was trying to distill down the info to get at the root of the problem, but I see from W4M's comment that this makes it look like a homework assignment. The real deal is that I'm looking at a very unoptimized database (not my purview normally) and when trying to get rid of these dupes before adding a key, the operation is taking forever. As in, hours. The table is big but certainly doesn't justify that. I'm trying to pitch in with my limited SQL expertise and figure out a way to get this done. Doesn't matter if it's pretty, I can sit at the command line and brute-force a bunch of queries if necessary. But I noticed that SELECTing IDs that are candidates for deletion only takes a few seconds, and although the table is huge, the total number of rows to delete is less than 10k so there must be a way to make this happen without some script that takes a whole weekend to finish.