Necesito asignar valores a 2 variables como se muestra a continuación en la función Postgres.
a := select col1 from tbl where ...
b := select col2 from tbl where ...
¿Cómo puedo asignar 2 valores a 2 variables en un comando de línea?
Me gusta
a,b := select col1,col2 from tbl where ...