PostgreSQL
 sql >> Datenbank >  >> RDS >> PostgreSQL

Wie man WITH(CTE) innerhalb einer Funktion in PostgreSQL schreibt

Es ist notwendig, table zurückzugeben

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

dann

select * from withFunction()