SQL 注释错误


sql comment error

我通过phpmyadmin从Drupal站点导出此SQL

CREATE TABLE `admin_language` (
  `uid` int(10) UNSIGNED NOT NULL DEFAULT '0'COMMENT AS `Primary Key: Unique user ID.`,
  `language` varchar(12) NOT NULL DEFAULT ''COMMENT AS `User’s default administration language.`
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Stores user admin language selections.';

但是当我通过phpmyadmin导入到另一个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 'AS 
`Primary Key: Unique user ID.`, `language` varchar(12) NOT NULL DEFAULT ''' at 
line 2

有人知道问题出在哪里吗?

更改注释的引号。从"到"