Formatting Names using SQL
PeopleCode, SQLYou’ve got a list of names and they are all in upper or lower case. How do you format “MCDONALD” to “McDonald”? What about all those Middle Eastern, Asian names?
This is kinda sneaky. I like it. It simply uses data in ps_names
to return the most often used formatting of a given name.
Update: repository for formatting names here: NameFormatter
with formatted_name as(
select distinct last_name, count(*) as count
from ps_names
where upper(last_name) = 'MCDONALD'
group by last_name)
select min(last_name)
from formatted_name
where count =
(select max(count) from formatted_name)