Created
May 18, 2015 10:37
-
-
Save rdmpage/250214b39ae83fedc87e to your computer and use it in GitHub Desktop.
Simple ION dump
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
SELECT | |
IFNULL(id, ""), | |
IFNULL(cluster_id, ""), | |
IFNULL(nameComplete, ""), | |
IFNULL(taxonAuthor, ""), | |
IFNULL(`group`, ""), | |
IFNULL(publication, "") | |
INTO OUTFILE "/tmp/markus.tsv" | |
FIELDS TERMINATED BY "\t" ENCLOSED BY "" ESCAPED BY "" | |
LINES TERMINATED BY "\n" | |
FROM names; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Query OK, 4939276 rows affected (5 min 2.38 sec)