Is there any way in MySQL to direct output from a query to a textfile? I did a search on this and found the following code snippet here in tek-tips, however, I have been unable to make it work:
SELECT * INTO OUTFILE MyOutput.TXT
FIELDS TERMINATED BY ","
FROM MyFile
WHERE Condition = MyCondition
Any thoughts/advice would be appreciated. Thank you in advance!
SELECT * INTO OUTFILE MyOutput.TXT
FIELDS TERMINATED BY ","
FROM MyFile
WHERE Condition = MyCondition
Any thoughts/advice would be appreciated. Thank you in advance!