La seguente espressione regolare aggiunge un carattere di sottolineatura davanti a ogni lettera maiuscola:
regexp_replace(name, '([A-Z])','_\1', 'g'))
Poiché all'inizio risulta un trattino basso, è necessario rimuoverlo utilizzando trim()
trim(both '_' from lower(regexp_replace(name, '([A-Z])','_\1', 'g')))
La seguente domanda:
with names (name) as (
values ('StackOverflow'),
('Foo'),
('FooBar'),
('foobar'),
('StackOverflowCom')
)
select name, trim(both '_' from lower(regexp_replace(name, '([A-Z])','_\1', 'g'))) as new_name
from names;
resi:
name | new_name
-----------------+-------------------
StackOverflow | stack_overflow
Foo | foo
FooBar | foo_bar
foobar | foobar
StackOverflowCom | stack_overflow_com