I want to split SQL in separate queries... but still does not work
$string = 'CREATE TABLE `articles` (
`id` int(9) auto_increment,
`context` text,
PRIMARY KEY (`id`)
) DEFAULT CHARSET='utf8' COLLATE='utf8_general_ci';
INSERT INTO `articles` VALUES (1, "insert; row1;"),
(2, "update; row2;")';
preg_match_all("/([^;\"]*?(\".*?\")?)*?;\s*/U", $string, $result);
print_r($result[0]);