PostgreSQL
 sql >> Base de données >  >> RDS >> PostgreSQL

comment utiliser correctement l'instruction if postgresql

Pour raccourcir un peu :

do $$
declare
  a integer := 10;
  b integer := 20;
  msg text;
begin
  msg := case
    when a>b then 'a is greater than b'
    when a<b then 'a is less than b'
    when a=b then 'a is equal to b'
    else 'NaN here'
  end;
  raise notice '%', msg;
end $$;

Cela fonctionne évidemment dans psql . Peut-être quelque chose ne va pas avec finance trading candlestick-chart