To export MySQL query results to csv , you usually use php to connect to mysql to execute the query, use php to generate the returned query results in csv format and then export them. But this is more troublesome and requires PHP to be installed on the server. Directly use mysql to export csv method We can use into outfile, fields terminated by, optionally enclosed by, line terminated by statements to export csv Statement format and function into outfile 'Exported directory and file name' fields terminated by 'field separator' optionally enclosed by 'Field Encloser' lines terminated by 'line separator' example: mysql -u root use test; select * from table into outfile '/tmp/table.csv' fields terminated by ',' optionally enclosed by '"' lines terminated by '\r\n'; After execution, the recorded data in talbe will be exported to the /tmp/table.csv file. Each field is separated by , and the field content is a string surrounded by ", and each record uses \r\n for line breaks. The above method of exporting MySQL query results to csv is all I want to share with you. I hope it can give you a reference. I also hope that you will support 123WORDPRESS.COM. You may also be interested in:
|
<<: How to test the maximum number of TCP connections in Linux
1: Understand the meaning of address rewriting an...
First, understand a method: Entering a Docker con...
Before hiding: After hiding: CSS: Copy code The co...
Today I helped a classmate solve a problem - Tomc...
Uninstall MySQL 1. In the control panel, uninstal...
This article shares the specific code for WeChat ...
I've been learning about stacking contexts re...
Perfect solution to the scalable column problem o...
JavaScript scripts can be embedded anywhere in HT...
Table of contents 1. Pre-analysis 1. Variable pre...
Table of contents Boolean Type Number Types Strin...
Table of contents Preface 1. scp usage 2. Use sft...
Since the network requests initiated by native js...
Table of contents How to view the source code of ...
Table of contents Preface Introduction to Closure...