Hi Guys, A question regarding dynamic forms and %sql I would like to be able to create dynamic form on %sql but to get values in run time i.e. Instead of this:
%sql select * from ${table_name=table1,table1|table2|table3} Do something as follows: %sql select * from ${table_name=table1,${getTableList()}} Assuming I have getTableList() method that returns list of the tables. I couldnt find any option to do so... I implmented something using println but that makes me create the table by myself... Thanks, Ophir