Там пустая строчка. Вот еще пример.
SQL-запрос:
CREATE TABLE `chat` (
`id` int( 11 ) NOT NULL AUTO_INCREMENT ,
`refid` int( 11 ) NOT NULL ,
`realid` int( 2 ) NOT NULL ,
`type` char( 3 ) NOT NULL ,
`time` int( 15 ) NOT NULL , `from` varchar( 25 ) NOT NULL ,
`to` varchar( 15 ) NOT NULL ,
`dpar` char( 3 ) NOT NULL ,
`text` text NOT NULL ,
`ip` text NOT NULL ,
`soft` text NOT NULL , `nas` text NOT NULL ,
`otv` int( 1 ) NOT NULL ,
PRIMARY KEY ( `id` ) ,
KEY `refid` ( `refid` ) ,
KEY `type` ( `type` ) ,
KEY `time` ( `time` ) , KEY `from` ( `from` ) ,
KEY `to` ( `to` )
) ENGINE = Aria DEFAULT CHARSET = utf8
PAGE_CHECKSUM =1 TRANSACTIONAL =1; Ответ
MySQL: Документация
#1064 - You have an error in your SQL syntax;
check the manual that corresponds to your MySQL
server version for the right syntax to use near
'PAGE_CHECKSUM=1 TRANSACTIONAL=1' at line 21