Empresas
Empleos
  • Sobre nosotros
  • Soluciones
    • Publicación de vacantes
      Publica tu vacante y recibe candidatos calificados en 48h.
    • Evaluación de candidatos
      500+ pruebas técnicas y psicológicas, más anti-fraude.
    • Headhunting
      Búsqueda ejecutiva a la medida de principio a fin.
    • Nómina + EOR
      Dispersión de nómina y EOR en más de 15 países de LATAM.
  • Precios
  • Empleos

0

169
Vistas
updating column with value from another column in postgres table

I have a postgres table which has 2 columns

username and email I have hundreds of rows in the table such as

username | email
username1 | test@abc.com
username2 | test@abc.com
username3 | test@abc.com
username4 | test@abc.com

The way this was setup all emails are the same, and now I need to make them unique. I am trying to update the email column to be like this

username | email
username1 | username1_test@abc.com
username2 | username2_test@abc.com
username3 | username3_test@abc.com
username4 | username4_test@abc.com

basically copy over the value from the username column and add it to the email column. I tried using the coalesce function but that will replace the value completely and not update it.

Please can you help me understand how to achieve this.

Thanks

over 4 years ago · Santiago Trujillo
1 Respuestas
Responde la pregunta

0

An update with basic concatenation should work here:

UPDATE yourTable
SET email = username || '_' || email;
over 4 years ago · Santiago Trujillo Denunciar
Responde la pregunta
Encuentra empleos remotos

¡Descubre la nueva forma de encontrar empleo!

Top de empleos
Top categorías de empleo
Empresas
Publicar vacante Precios Comercial
Legal
Términos y condiciones Política de privacidad
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomiéndame algunas ofertas
Necesito ayuda