welcome to webune support forums

today we had a good question about mysql, the questions was how you can create multilple tables at once.

creating two or more tables in a database is easy as long as you know which syntax to use, for example, i can create two tables with this command:

MySQL Query:
CREATE TABLE `table1` (`field1` VARCHAR( 11 ) NOT NULL);
CREATE TABLE `table2` (`field2` VARCHAR( 11 ) NOT NULL);


try the above query in your phpmyadmin