cancel
Showing results for 
Search instead for 
Did you mean: 

How to use table variable in dynamic sql

former_member302500
Discoverer
1,408

Hi ,

Inside a procedure, I use a table variable to store the some result from table A .

I have to use this table variable in dynamic sql .

Eg)

Call Procedure A()

Begin

VAR_TAB = select customer_id from table_A;

EXEC ' select * from'||: var_tab;

End;

The above code will throw error. Anyone has a solution for this ?

Thanks,

Yogesh

Accepted Solutions (0)

Answers (1)

Answers (1)

pfefferf
Active Contributor

Hello Yogesh,

as mentioned in the SQLScript Reference (Dynamic SQL - SAP HANA SQLScript Reference - SAP Library) it is not possible to address SQLScript variables in a dynamic SQL statement. If really necessary you could exchange information between the SQLScript and the dynamic SQL via local temporary tables. But of course you should avoid dynamic SQL if possible due to the big disadvantages.

Regards,

Florian