我想從我的遠程服務器複製一個MyIsam數據庫到我的本地機器進行測試。我在遠程服務器上使用phpMyAdmin。我選擇數據庫然後導出。當我嘗試導入(使用MAMP,phMyAdmin)我收到以下錯誤消息 錯誤 SQL查詢:使用mamp導入mysql數據庫,phpMyAdmin
CREATE TABLE IF NOT EXISTS `assignments` (
`uid` int(11) default NULL ,
`rid` int(11) default NULL ,
`semester` varchar(255) default NULL ,
`year` int(11) default NULL
) TYPE = MYISAM ;
MySQL said: Documentation
#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 'TYPE=MyISAM' at line 6
請幫助!
謝謝
可能重複的[CREATE TABLE ... TYPE = MYISAM中的1064錯誤](http://stackoverflow.com/questions/12428755/1064-error-in-create-table-type -myisam) – Jocelyn