MySQL multi CREATE TABLE syntax help?
Posted
by rlb.usa
on Stack Overflow
See other posts from Stack Overflow
or by rlb.usa
Published on 2010-04-22T21:44:12Z
Indexed on
2010/04/22
21:53 UTC
Read the original article
Hit count: 247
Hi guys,
I'm trying to write a MySQL script that creates several tables. I have:
CREATE TABLE `DataBase1`.`tbl_this`(
...
);
CREATE TABLE `DataBase1`.`tbl_that`(
...
);
... (14 more) ...
BUT, only the first CREATE TABLE
statement is executed. I get no syntax errors. Erm, am I missing the MSSQL equivalent of GO
? What am I doing wrong here; how do I get this baby to run all the tables?
© Stack Overflow or respective owner