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?