How to Save MySQL query results into a text or CSV file in y_MySQL
In your terminal
Given a query such ass
SELECT * FROM pet;
which returns all columns of data, the results can be placed into the file /tmp/pet.txt using the query:
SELECT * FROM pet
INTO OUTFILE ‘/tmp/pet.txt’
This will create a tab-separated file, each row on its own line. To alter this behavior, it is possible to add modifiers to the query:
SELECT * FROM pet
INTO OUTFILE ‘/tmp/pet.csv’
FIELDS TERMINATED BY ‘,’
LINES TERMINATED BY ‘/n’
In this example,the fields will be separated by commas, and each row will be output on a new line separated by a newline (/n). Sample output of this command would look like:
Fluffy,Harold,cat,f,1993-02-04,0000-00-00
Claws,Gwen,cat,m,1994-03-17,0000-00-00
上一篇: php生成excel问题
下一篇: 05.线性表(四)链式存储结构.静态链表