- Forums
- MYSQL
- How To Create Multiple Tables In Mysql
This Page Will Show You How You Can Create Mutliple Tables In Your Databases With Just One Command [2310], Last Updated: Mon Jun 24, 2024
Webune Support
Wed Oct 28, 2009
0 Comments
531 Visits
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