vote up 0 vote down star

Hi All,

I am creating database at runtime and I want to create the tables in that database at the same time. can anyone give me any thought on how to do that? For Example - I have created one database named 'mydb' and now in the same proess i am trying to create the table i am using the mysql stored procedure for the same. my proc input will be my dbname. so, my proc looks like

create procedure test(IN dbname varchar(100)) begin create table dbname.testing(testid int, testname varchar(45)); end

flag

63% accept rate

1 Answer

vote up 2 vote down check

You can use the PREPARE feature to execute dynamic SQL.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.