Skip to content
Advertisement

Issue with passing column name as a parameter to “PREPARE” in Redshift

I am using REDSHIFT for the below question, Here is problem and I am looking for solution.

I have 2 tables, one table contains the column combinations on which the second table should group the results by.

Table 1 containing column combinations (This is output from a stored procedure):

Table 2 containing fruit_baskets:

Result set:

Tried solution in Redshift:

Questions:

1 – Is there a way I can pass column names as parameter to a sql statement and execute the sql?

2 – What is other alternative to achieve the result set mentioned above in Redshift?

Advertisement

Answer

This can now be done using Stored Procedures without the need for PREPARE. “Overview of Stored Procedures in Amazon Redshift”

It seems like you are trying to emulate GROUPING SETS or ROLLUP functionality. I have added a UNION ALL to the dynamic SQL to provide this type of output.

For this example stored procedure, both column names are provided as input and a REFCURSOR is declared as output.

You specify the columns and the output REFCURSOR when calling the procedure. The column names could be retrieved from a table by another stored procedure if needed. Then fetch the output from the REFCURSOR.

User contributions licensed under: CC BY-SA
2 People found this is helpful
Advertisement