Hi,
I am pretty new to SQL and I would like to know is it possible to do
the following task in SQL?
I have a table containing 2 columns A, B where A is the primary key.
If the table contains the following data.
A B
--- ---
1 a
2 b
3 b
4 b
5 c
6 c
7 d
I would like to run a sql statement to get rid of all the rows
containing duplicated entries of B where the smaller A will get
deleted. (keep the last row where there is no longer duplicates of B)
The end result will be
A B
--- ---
1 a
4 b
6 c
7 d
Thanks,
--muteki
I am pretty new to SQL and I would like to know is it possible to do
the following task in SQL?
I have a table containing 2 columns A, B where A is the primary key.
If the table contains the following data.
A B
--- ---
1 a
2 b
3 b
4 b
5 c
6 c
7 d
I would like to run a sql statement to get rid of all the rows
containing duplicated entries of B where the smaller A will get
deleted. (keep the last row where there is no longer duplicates of B)
The end result will be
A B
--- ---
1 a
4 b
6 c
7 d
Thanks,
--muteki
Comment