I have a table like this:
name
Smith
Smith
Perez
Pérez
I would like to eliminate duplicates like Smith but preserve both Perez and Pérez (e and é). If I use 'group by' I get two rows (Smith and one of the two Perez/Pérez), but I would like to get three rows (Smith, Perez, Pérez). It happens the same with Sjögren and Sjogren, etc. Thanks