I have this stored procedure in which i create new tables with the table_name being a variable. but though
select table_name;
returns variable value
create table table_name(some_columns);
creates a table with name table_name and not the value.
I have this stored procedure in which i create new tables with the table_name being a variable. but though
select table_name;
returns variable value
create table table_name(some_columns);
creates a table with name table_name and not the value.