J'ai besoin d'attribuer des valeurs à 2 variables comme ci-dessous dans la fonction Postgres.
a := select col1 from tbl where ...
b := select col2 from tbl where ...
Comment puis-je attribuer 2 valeurs à 2 variables dans une commande de ligne?
Comme
a,b := select col1,col2 from tbl where ...
postgresql
functions
plpgsql
Xianlin
la source
la source