Hi I have a stored procedure and I would like to use its output as an input table. Tried something like this but it is not working
SELECT
...
FROM
(SELECT CALL Recommend('input');)
How would I be able to use it as my input?
Hi I have a stored procedure and I would like to use its output as an input table. Tried something like this but it is not working
SELECT
...
FROM
(SELECT CALL Recommend('input');)
How would I be able to use it as my input?