Skip to content

Instantly share code, notes, and snippets.

@romiras
Created November 28, 2024 12:49
Show Gist options
  • Save romiras/9bd24cd74aeab463f728ff60bc6c004f to your computer and use it in GitHub Desktop.
Save romiras/9bd24cd74aeab463f728ff60bc6c004f to your computer and use it in GitHub Desktop.
Export table column into TSV file in MySQL
mysql -C \
--raw --batch \
--default-character-set=utf8mb4 \
-e "SELECT col1 FROM tbl1" \
-u usr -p db_schema \
| pv > dump-$1.tsv
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment