如何打开使用终端下载的sql数据库?

时间:2012-06-14 00:14:20

标签: sql database import load terminal

How can I import a database with MySQL from terminal? 来自此线程的语法

mysql -u username -ppassword databasename < filename.sql

我对文件的输入(lahman591)为了简单起见,我把它放在我的根上

mysql> mysql -u root -p lahman591 <c:\lahman591.sql

我收到错误:

ERROR 1064 (42000) You have an error in your sql syntax.

1 个答案:

答案 0 :(得分:2)

您需要从普通的shell(命令调用mysql bin)而不是mysql shell执行此操作。