2010年1月13日 星期三

MySQL匯入時的錯誤 #1064

MySQL更新到5.5以後匯入資料庫時會出現如下錯誤

#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 1

原因出在於 TYPE=MyISAM

將 TYPE=MyISAM 全部替換成 ENGINE=MyISAM 就好了

2010年1月4日 星期一