我需要使用不同的变量多次执行查询,并将输出重定向到变量中定义的输出文件。
我正在尝试像
这样的东西SET @OUTFILE = '/tmp/outfile_1';
select *
from db
INTO OUTFILE @OUTFILE;
但我有错误
ERROR 1064 (42000): 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 '@OUTFILE'
知道如何解决此问题吗?