MySQL Export query results

Source: Internet
Author: User




SELECT * from my_table into outfile '/tmp/abc.xls ';

Then it is ftp to get the files back to the local. My program is automatically placed in C + +

In addition, there is a way to export, compared to the above, this can be directly overwrite the existing files.

Ways to use outfile

Mysql> Select 1 into outfile '/tmp/t1.txt ';

Query OK, 1 row Affected (0.00 sec)

Mysql> Select 1 into outfile '/tmp/t1.txt ';

ERROR 1086 (HY000): File '/tmp/t1.txt ' already exists


Can only be exported to the TMP directory, other directories will be error


Another way:

Script Export:

#!/bin/bash

Cat << Endf | Mysql-u root-proot > Tmes.txt

SELECT * from test. 1_account;

Endf

------------------------------------

Note Add a database. Table name



MySQL Export query results

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.