Within a function I have created a string containing a Select Query as
SQLSTR:='select col1,col2 from '||_param1||'_'||_param2||' where col1 like ''%'||_pram3;
What I want is to store the result of SQLSTR
into temporary table as FilterTable
when after I run the EXECUTE SQLSTR;
command.