PostgreSQL
 sql >> Base de Dados >  >> RDS >> PostgreSQL

Como escrever WITH (CTE) dentro da função no PostgreSQL


É necessário retornar table
Create or replace function withFunction()
returns table(phone1 text, phone2 text) as

então
select * from withFunction()