如何纠正Putty的MySQL语法错误

时间:2014-12-10 04:57:53

标签: mysql

我正在尝试在'putty'中使用以下查询“mysql”

  

mysql -user -password -e“select * from table_name”> '/tmp/output.txt'

但是得到如下错误......

  

您的SQL语法有错误;检查与MySQL服务器版本对应的手册,以便在'mysql -user-password -e“select * from table_name”>附近使用正确的语法。第1行的'/tmp/output.txt'

我需要立即帮助。

2 个答案:

答案 0 :(得分:0)

我刚在Windows服务器上试过这个。下面的代码应该没有问题。

如果此代码不起作用,请发布您正在使用的确切代码。也许你正在尝试一个糟糕的查询。

mysql -uroot -p -e "select * from table_name" > "c:/tmp/output.txt"

答案 1 :(得分:0)

在localhost终端上尝试使用此命令从mysql表中获取文件

mysql --user=mysql_username --password=mysql_password -e "select * into outfile '/tmp/output.txt' from database.table";