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

Comment écrire WITH(CTE) dans la fonction dans PostgreSQL

Il faut retourner table

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

alors

select * from withFunction()