I would like to extract only the first word to the first space.
I used the following query:
select upper(substring(substring(descripcion,28),0,length(substring(descripcion,28))-position(' ' in reverse(substring(descripcion,28)))+1)) from evento where descripcion ~ 'Act. datos:Actualización';
But it gives me back everything, not just the first word before the first space.
How can I get the following result
etc.
Use split_part with space as delimiter to get the first string, e.g.
SELECT split_part('CARMEN SANDIEGO',' ',1);
split_part
------------
CARMEN
So in your case it should be something like
SELECT
upper(
split_part(
trim(substring(descripcion,28)),' ',1))
FROM evento
WHERE descripcion ~ 'Act. datos:Actualización';
Demo: db<>fiddle
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With