Refer to the official document http://dev.mysql.com/doc/refman/5.7/en/select-into.html mysql> select game,domain,type -> into outfile 'd:\\game.csv' -> fields terminated by ',' -> lines terminated by '\n' -> from game_lists limit 10; The following are examples: mysql> create table test(id int(10) not null auto_increment primary key, name varchar(10) not null, age tinyint(2) not null)engine=innodb default charset=utf8; mysql> insert into test(`name`,`age`) values ('Lee',20),('Li',30),('Wang',22),('Feng',23); Check the results first mysql> select * from (select 'name','age' union select name,age from test) b; +------+-----+ | name | age | +------+-----+ | name | age | | Lee | 20 | | Li | 30 | | Wang | 22 | | Feng | 23 | +------+-----+ 5 rows in set (0.00 sec) Export CSV file mysql> select * into outfile 'd:\\tmp\\columns.csv' fields terminated by ',' lines terminated by '\n' from (select 'name','age' union select name,age from test) b; Query OK, 5 rows affected (0.00 sec) The above method of exporting MySQL CSV files with headers is all I have 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:
|
<<: Alibaba Cloud Server Ubuntu Configuration Tutorial
>>: Let’s take a look at JavaScript precompilation (summary)
Preface: Integer is one of the most commonly used...
Copy code The code is as follows: <select> ...
<meta http-equiv="X-UA-Compatible" c...
MySQL group sorting to find the top N Table Struc...
When I was helping someone adjust the code today,...
<br />Previous Web Design Tutorial: Web Desi...
1. Introduction Is it considered rehashing old st...
Solution: Just set the link's target attribute...
Command to add a route: 1.Route add route add -ne...
Basic concepts of consul Server mode and client m...
Table of contents Preface Computed properties Int...
Problem Description The MySQL startup error messa...
Table of contents Overview Button-level permissio...
1. Preliminary preparation (windows7+mysql-8.0.18...
Table of contents 1 Create configuration and data...