Change output format for MySQL command line results to CSV

前端 未结 7 2046
囚心锁ツ
囚心锁ツ 2020-12-05 03:54

I want to get headerless CSV data from the output of a query to MySQL on the command line. I\'m running this query on a different machine from the MySQL server, so all those

相关标签:
7条回答
  • 2020-12-05 04:12

    If you are using mysql client you can set up the resultFormat per session e.g.

    mysql -h localhost -u root --resutl-format=json
    

    or

    mysql -h localhost -u root --vertical
    

    Check out the full list of arguments here.

    0 讨论(0)
  • 2020-12-05 04:22

    I wound up writing my own command-line tool to take care of this. It's similar to cut, except it knows what to do with quoted fields, etc. This tool, paired with @Jimothy's answer, allows me to get a headerless CSV from a remote MySQL server I have no filesystem access to onto my local machine with this command:

    $ mysql -N -e "select people, places from things" | csvm -i '\t' -o ','
    Bill,"Raleigh, NC"
    

    csvmaster on github

    0 讨论(0)
  • 2020-12-05 04:25

    The above solutions only work in special cases. You'll get yourself into all kinds of trouble with embedded commas, embedded quotes, other things that make CSV hard in the general case.

    Do yourself a favor and use a general solution - do it right and you'll never have to think about it again. One very strong solution is the csvkit command line utilities - available for all operating systems via Python. Install via pip install csvkit. This will give you correct CSV data:

        mysql -e "select people, places from things" | csvcut -t
    

    That produces comma-separated data with the header still in place. To drop the header row:

        mysql -e "select people, places from things" | csvcut -t | tail -n +2
    

    That produces what the OP requested.

    0 讨论(0)
  • 2020-12-05 04:30

    How about using sed? It comes standard with most (all?) Linux OS.

    sed 's/\t/<your_field_delimiter>/g'.

    This example uses GNU sed (Linux). For POSIX sed (AIX/Solaris)I believe you would type a literal TAB instead of \t

    Example (for CSV output):

    #mysql mysql -B -e "select * from user" | while read; do sed 's/\t/,/g'; done
    
    localhost,root,,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,,,,,0,0,0,0,,
    localhost,bill,*2470C0C06DEE42FD1618BB99005ADCA2EC9D1E19,N,N,N,N,N,N,N,N,N,N,N,N,N,N,N,N,N,N,N,N,N,N,N,N,N,N,N,N,N,,,,,0,0,0,0,,
    127.0.0.1,root,,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,,,,,0,0,0,0,,
    ::1,root,,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,,,,,0,0,0,0,,
    %,jim,*2470C0C06DEE42FD1618BB99005ADCA2EC9D1E19,N,N,N,N,N,N,N,N,N,N,N,N,N,N,N,N,N,N,N,N,N,N,N,N,N,N,N,N,N,,,,,0,0,0,0,,
    
    0 讨论(0)
  • 2020-12-05 04:31

    It is how to save results to CSV on the client-side without additional non-standard tools. This example uses only mysql client and awk.

    One-line:

    mysql --skip-column-names --batch -e 'select * from dump3' t | awk -F'\t' '{ sep=""; for(i = 1; i <= NF; i++) { gsub(/\\t/,"\t",$i); gsub(/\\n/,"\n",$i); gsub(/\\\\/,"\\",$i); gsub(/"/,"\"\"",$i); printf sep"\""$i"\""; sep=","; if(i==NF){printf"\n"}}}'
    

    Logical explanation of what is needed to do

    1. First, let see how data looks like in RAW mode (with --raw option). the database and table are respectively t and dump3

      You can see the field starting from "new line" (in the first row) is splitted into three lines due to new lines placed in the value.

    mysql --skip-column-names --batch --raw -e 'select * from dump3' t
    
    one line        2       new line
    quotation marks " backslash \ two quotation marks "" two backslashes \\ two tabs                new line
    the end of field
    
    another line    1       another line description without any special chars
    
    1. OUTPUT data in batch mode (without --raw option) - each record changed to the one-line texts by escaping characters like \ <tab> and new-lines
    mysql --skip-column-names --batch -e 'select * from dump3' t
    
    one line      2  new line\nquotation marks " backslash \\ two quotation marks "" two backslashes \\\\ two tabs\t\tnew line\nthe end of field
    another line  1  another line description without any special chars
    
    1. And data output in CSV format

    The clue is to save data in CSV format with escaped characters.

    The way to do that is to convert special entities which mysql --batch produces (\t as tabs \\ as backshlash and \n as newline) into equivalent bytes for each value (field). Then whole value is escaped by " and enclosed also by ". Btw - using the same characters for escaping and enclosing gently simplifies output and processing, because you don't have two special characters. For this reason all you have to do with values (from csv format perspective) is to change " to "" whithin values. In more common way (with escaping and enclosing respectively \ and ") you would have to first change \ to \\ and then change " into \".

    And the commands' explanation step by step:

    # we produce one-line output as showed in step 2.
    mysql --skip-column-names --batch -e 'select * from dump3' t
    
    # set fields separator to  because mysql produces in that way
    | awk -F'\t' 
    
    # this start iterating every line/record from the mysql data - standard behaviour of awk
    '{ 
    
    # field separator is empty because we don't print a separator before the first output field
    sep=""; 
    
    -- iterating by every field and converting the field to csv proper value
    for(i = 1; i <= NF; i++) { 
    -- note: \\ two shlashes below mean \ for awk because they're escaped
    
    -- changing \t into byte corresponding to <tab> 
        gsub(/\\t/, "\t",$i); 
    
    -- changing \n into byte corresponding to new line
        gsub(/\\n/, "\n",$i); 
    
    -- changing two \\ into one \  
        gsub(/\\\\/,"\\",$i);
    
    -- changing value into CSV proper one literally - change " into ""
        gsub(/"/,   "\"\"",$i); 
    
    -- print output field enclosed by " and adding separator before
        printf sep"\""$i"\"";  
    
    -- separator is set after first field is processed - because earlier we don't need it
        sep=","; 
    
    -- adding new line after the last field processed - so this indicates csv record separator
        if(i==NF) {printf"\n"} 
        }
    }'
    
    0 讨论(0)
  • 2020-12-05 04:34

    mysqldump utility can help you, basically with --tab option it's a wrapped for SELECT INTO OUTFILE statement.

    Example:

    mysqldump -u root -p --tab=/tmp world Country --fields-enclosed-by='"' --fields-terminated-by="," --lines-terminated-by="\n" --no-create-info
    

    This will create csv formatted file /tmp/Country.txt

    0 讨论(0)
提交回复
热议问题