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

Come scrivere WITH(CTE) all'interno della funzione in PostgreSQL

È necessario restituire table

Create or replace function withFunction()
returns table(phone1 text, phone2 text) as

poi

select * from withFunction()