This question is related to an earlier one: Why is selecting from stored procedure not supported in relational databases?
On SQL Server you cannot perform a join to (or a select from) a stored procedure (please note: a stored procedure is distinctly different from a function (table-valued function in SQL Server terminology) - with a function, you know the columns being returned at design time, but with a procedure, the specific columns to be returned are not known until runtime).
With SQL Server, there does exist a "generally not allowed by DBA's" method where one can accomplish such a join: OPENROWSET
So the questions are:
Can PostgreSQL perform a join between two procedures where the columns are not known until runtime?
Can it do the same, except using stored procedures that reside in an external 3rd party database (perhaps via foreign data wrappers or some other mechanism)?
The basic answer is simple because there currently are no stored procedures in Postgres (up to Postgres 10), just functions - which provide almost but not quite the same functionality, as you have laid out in the question.
And any function can be used in the
FROM
clause of aSELECT
query like any other table.Update:
SQL procedures ("stored procedures") are introduced with Postgres 11.
The manual for
CREATE PROCEDURE
.SQL itself demands to know the return type at runtime. There is a border-case: you can declare the return type with the function call using polymorphic types. Detailed instructions here (the last chapter being most relevant to you):
That's a NO, too, based on the same principle. If you use foreign tables, you must provide a clearly defined return type one or the other way.
You might be able to lump the whole row resulting from an SQL-Server-stored-procedure into a single tab-delimited text representation, but then (besides being error-prone and inefficient) you have a single column and need the meta information defining individual columns one or the other way to extract columns - catch 22.