vote up -1 vote down star

Can we create tables dynamically in MySQL? If so, how? Dynamic means at run time....ie via procedure AND HOW???? I am using dotnet Ans--> yes we can create...but problem is i want to change the name of table each time the procedure is called....

flag

57% accept rate
What language are you using? – Mark Biek Oct 5 at 12:01
1  
What exactly does "dynamically" mean? Once you can answer that question, you pretty much have the answer to your question. – Joachim Sauer Oct 5 at 12:02

7 Answers

vote up 4 vote down check

If you have sufficient privileges, you only need to use the same SQL statement(s) you would use in the administrative interface to create tables.

link|flag
vote up 0 vote down

Absolutely yes, though I might question the wisdom of doing so unless it's for some sort of actual database-management component.

link|flag
vote up 0 vote down

Yes. It's just a simple MYSQL statement. Suppose you're using PHP.

q = "CREATE TABLE..";

and you execute that statement in PHP.

This assumes you have privileges, of course.

link|flag
vote up 0 vote down

Dynamically?? like if an insert, update, or delete statement is performed...I don't know if this is what you meant but you can look into triggers

link|flag
vote up 3 vote down

Yes, you can build tables in MySQL at any point before, during, or after program execution.

Depending on your needs, you may want to create tables during execution as Temporary tables so that they get automatically cleaned up at the end of the session. Note that these tables will not be visible to other sessions as each session has it's own private version of the temp table and will not be available for you to view at the end of the session. Once created, you can index and access them within your program just like any other table. If you need data to be persistent and available across sessions, you should stick with plain old tables.

MySQL Create Table Syntax

link|flag
vote up 0 vote down

Yes, it is possible.

link|flag
vote up 0 vote down

Yes, look at this

link|flag

Your Answer

Get an OpenID
or

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