Last active
December 17, 2015 09:09
-
-
Save tacsio/5585561 to your computer and use it in GitHub Desktop.
Extract to file mysql
This file contains 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
SELECT * FROM table | |
where attr = x | |
INTO OUTFILE '/home/tarcisio.coutinho/Shared/inicio.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