Eu preciso atribuir valores a 2 variáveis como abaixo na função Postgres.
a := select col1 from tbl where ...
b := select col2 from tbl where ...
Como posso atribuir 2 valores a 2 variáveis em um comando de linha?
Gostar
a,b := select col1,col2 from tbl where ...
postgresql
functions
plpgsql
Xianlin
fonte
fonte