Created
November 11, 2016 20:01
-
-
Save oreales/3f388f4a28ba55fa0d430bf6783dca5e to your computer and use it in GitHub Desktop.
Exportando desde MySQL a csv
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#Por ejemplo para importar a Apple Numbers | |
SELECT * | |
FROM orders | |
INTO OUTFILE '/tmp/orders.csv' | |
FIELDS TERMINATED BY ',' | |
ENCLOSED BY '"' | |
LINES TERMINATED BY '\n' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment