DATAZO III – Funciones de string en Postgres, conocidas y desconocidas

n buen resumen de muchisimas funciones de strings, conocidas y desconocidas:
http://postgresql-backup.com/postgresql-blog/postgres-string-functions/
Todo en un PDF:
http://postgresql-backup.com/postgresql-blog/wp-content/uploads/2016/06/PostgreSQL-Cheat-Sheet_-String-Functions.pdf
Por ejemplo, cómo parsear un string separado por comas:
SPLIT_PART ('1,2,3', ',', 2) = '2'
cómo rellenar con ceros:
LPAD ('123', 6, '0') = '000123'
cómo escribir con iniciales mayusculas:
INITCAP ('hi thomas') = 'Hi Thomas'
etc, etc etc.

Posted

in

by