1

我正在尝试使用 shell 命令 lin 中的此查询写入文件:

mysql --user=my_user --password='my_password' -e "select concat_ws ('\t' , user_id , first_name , last_name , user_email ) from users" into outfile '/hiking_contacts.txt';

我希望这会创建一个文本文件,但它并没有真正起作用。有人知道我在这里哪里出错了吗?

谢谢,亚历克斯

4

1 回答 1

1

尝试这个:

mysql --user=my_user --password='my_password' -e "select concat_ws ('\t' , user_id , first_name , last_name , user_email ) from users;" >> hiking_contacts.txt

并检查权限。

看看文档:http ://dev.mysql.com/doc/refman/5.0/en/command-line-options.html

于 2013-04-13T16:03:22.707 回答