gpt4 book ai didi

MySQL select into outfile/tmp 无输出

转载 作者:IT老高 更新时间:2023-10-29 00:03:04 26 4
gpt4 key购买 nike

我无法获得以下代码来生成任何输出。 MySQL用户有“all”授权级别,/tmp可写,查询返回结果集。

mysql> SELECT field FROM test_table WHERE condition='test'
-> INTO OUTFILE '/tmp/test.csv'
-> FIELDS TERMINATED BY ','
-> ENCLOSED BY '"'
-> LINES TERMINATED BY '\n';
Query OK, 1 row affected (0.00 sec)

mysql>
[1]+ Stopped mysql
[root@web1 ~]# cat /tmp/test.csv
cat: /tmp/test.csv: No such file or directory

如果出现故障,我是否应该看到 MySQL 的不同输出?

除了“受影响的 1 行”之外,我能否进一步验证结果?

最佳答案

由 outfile 子句生成的文件是在 mysql 服务器主机上创建的。请确保您正在查看 mysql 服务器主机,因为看起来您在客户端主机上,而这很可能不是 mysql 服务器主机。

http://dev.mysql.com/doc/refman/5.0/en/select.html在有关此文档的关于 outfile 的部分中。

关于MySQL select into outfile/tmp 无输出,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1038170/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com