PostgreSQL
 sql >> Database >  >> RDS >> PostgreSQL

Come specificare i tipi di colonna per CTE (Common Table Expressions) in PostgreSQL?

Penso che dovresti specificare i tipi all'interno dell'espressione VALUES nel tuo caso:

WITH t (f0, f1) as (
  values 
     (1::bigint, 10::bigint),
     (2, 20)
)...

Hai solo bisogno dei tipi sul primo set di valori, PostgreSQL può dedurre il resto.

Ad esempio, supponiamo di avere due funzioni:

create function f(bigint, bigint) returns bigint as $$
begin
    raise notice 'bigint';
    return $1 * $2;
end;
$$ language plpgsql;

create function f(int, int) returns int as $$
begin
    raise notice 'int';
    return $1 * $2;
end;
$$ language plpgsql;

Allora

WITH t (f0, f1) as (
    values
        (1, 10),
        (2, 20)
)
select f(f0, f1) from t;

ti daranno due int avvisi mentre

WITH t (f0, f1) as (
    values
        (1::bigint, 10::bigint),
        (2, 20)
)
select f(f0, f1) from t;

ti darebbe due bigint avvisi.