I have my database as below:
ID | First | Surname | DOB
-----------------------------
01 | Homer | Simpson | 12-May
02 | Homer | Simpson | 12-May
03 | Marge | Bouvier | 19-Mar
I am looking to run a SQL select
query on the database, to create results where a new unique ID is created by merging the unique fields of the duplicated rows?
ID | First | Surname | DOB
----------------------------------
01 / 02 | Homer | Simpson | 12-May
03 | Marge | Bouvier | 19-Mar