vote up 0 vote down star
5

What is the most efficient way to convert a MySQL query to CSV in PHP please?

It would be best to avoid temp files as this reduces portability (dir paths and setting file-system permissions required).

The CSV should also include one top line of field names.

Cheers.

flag
Could you, uhh, explain your problem a bit more? i.e. are you getting stuck anywhere? Have you even...attempted the problem? – Swati Sep 24 '08 at 2:46
I'd be a lot more inclined to help if you weren't asking us to do all the work for you. – Andy Lester Sep 24 '08 at 2:46
though it's pretty much "plz send me the codez" - the actual question of "how to convert mysql to csv" is valid enough. – nickf Sep 24 '08 at 2:48
...can the OP/moderator reword this to be less of a homework question? – nickf Sep 24 '08 at 2:49
I agree this question is horribly asked. OP is asking for teh codez, and isn't asking a specific question about programming. A bit hard to reword, as there isn't much to work with. Perhaps Reilly could pretend to have tried something as thanks for the answers? Still an easily googleable, though. – William Keller Sep 24 '08 at 2:52
show 1 more comment

7 Answers

vote up 8 vote down check
SELECT * INTO OUTFILE "c:/mydata.csv"
FIELDS TERMINATED BY ',' OPTIONALLY ENCLOSED BY '"'
LINES TERMINATED BY "\n"
FROM my_table;

(the documentation for this is here: http://dev.mysql.com/doc/refman/5.0/en/select.html)

or:

$select = "SELECT * FROM table_name";

$export = mysql_query ( $select ) or die ( "Sql error : " . mysql_error( ) );

$fields = mysql_num_fields ( $export );

for ( $i = 0; $i < $fields; $i++ )
{
    $header .= mysql_field_name( $export , $i ) . "\t";
}

while( $row = mysql_fetch_row( $export ) )
{
    $line = '';
    foreach( $row as $value )
    {                                            
        if ( ( !isset( $value ) ) || ( $value == "" ) )
        {
            $value = "\t";
        }
        else
        {
            $value = str_replace( '"' , '""' , $value );
            $value = '"' . $value . '"' . "\t";
        }
        $line .= $value;
    }
    $data .= trim( $line ) . "\n";
}
$data = str_replace( "\r" , "" , $data );

if ( $data == "" )
{
    $data = "\n(0) Records Found!\n";                        
}

header("Content-type: application/octet-stream");
header("Content-Disposition: attachment; filename=your_desired_name.xls");
header("Pragma: no-cache");
header("Expires: 0");
print "$header\n$data";
link|flag
technically, this is tab-separated ;) – John Douthat May 7 at 21:34
vote up 0 vote down

This is really good John. Thank you.

One question.

I can't seem to get each $result returned onto its own row within the csv file. Any suggestions?

TIA.

link|flag
If you have some more specifics how you try to get the results in their own rows and what doesn't work about it, post it as a new question ("Ask Question" button in the top right). More people will see your question that way. – sth Nov 7 at 17:28
vote up 0 vote down

If you'd like the download to be offered as a download that can be opened directly in Excel, this may work for you: (copied from an old unreleased project of mine)

These functions setup the headers:

function setExcelContentType() {
    if(headers_sent())
        return false;

    header('Content-type: application/vnd.ms-excel');
    return true;
}

function setDownloadAsHeader($filename) {
    if(headers_sent())
        return false;

    header('Content-disposition: attachment; filename=' . $filename);
    return true;
}

This one sends a CSV to a stream using a mysql result

function csvFromResult($stream, $result, $showColumnHeaders = true) {
    if($showColumnHeaders) {
        $columnHeaders = array();
        $nfields = mysql_num_fields($result);
        for($i = 0; $i < $nfields; $i++) {
            $field = mysql_fetch_field($result, $i);
            $columnHeaders[] = $field->name;
        }
        fputcsv($stream, $columnHeaders);
    }

    $nrows = 0;
    while($row = mysql_fetch_row($result)) {
        fputcsv($stream, $row);
        $rows++;
    }

    return $nrows;
}

This one uses the above function to write a CSV to a file, given by $filename

function csvFileFromResult($filename, $result, $showColumnHeaders = true) {
    $fp = fopen($filename, 'w');
    $rc = csvFromResult($fp, $result, $showColumnHeaders);
    fclose($fp);
    return $rc;
}

And this is where the magic happens ;)

function csvToExcelDownloadFromResult($result, $showColumnHeaders = true, $asFilename = 'data.csv') {
    setExcelContentType();
    setDownloadAsHeader($asFilename);
    return csvFileFromResult('php://output', $result, $showColumnHeaders);
}

For example:

$result = mysql_query("SELECT foo, bar, shazbot FROM baz WHERE boo = 'foo'");
csvToExcelDownloadFromResult($result);
link|flag
vote up 5 vote down

Check out this question / answer. It's more concise than @Geoff's, and also uses the builtin fputcsv function.

$result = $db_con->query('SELECT * FROM `some_table`');
if (!$result) die('Couldn\'t fetch records');
$num_fields = mysql_num_fields($result);
$headers = array();
for ($i = 0; $i < $num_fields; $i++) {
    $headers[] = mysql_field_name($result , $i);
}
$fp = fopen('php://output', 'w');
if ($fp && $result) {
    header('Content-Type: text/csv');
    header('Content-Disposition: attachment; filename="export.csv"');
    header('Pragma: no-cache');
    header('Expires: 0');
    fputcsv($fp, $headers);
    while ($row = $result->fetch_array(MYSQLI_NUM)) {
        fputcsv($fp, array_values($row));
    }
    die;
}
link|flag
Yours doesn't have the column headers. – Paolo Bergantino Sep 24 '08 at 5:38
I added the column headers – Jrgns Sep 24 '08 at 15:07
vote up 0 vote down

This poster is really too rude to deserver an answer, but I'd like to pretend I'm helping a more polite interested party who finds this on Google.

Basically, it all works around the fputcsv function. Your file pointer can either be an opened file or php://stdout. If you're writing to a temp file, you'll need to open it and read it again after you're done writing to it.

You do your query, get the result, get the fields (this is easy if you're using the mysqli features because you can ask the result what its fields are and it will return an array you can pass to fputscv). After that, you fetch the associative array for each row and pass it to fputscv. That's it.

link|flag
I answered with similair code to what you propose – Jrgns Sep 24 '08 at 5:35
vote up 12 vote down

Look at the documentation regarding the SELECT ... INTO OUTFILE syntax.

SELECT a,b,a+b INTO OUTFILE '/tmp/result.txt'
  FIELDS TERMINATED BY ',' OPTIONALLY ENCLOSED BY '"'
  LINES TERMINATED BY '\n'
  FROM test_table;
link|flag
vote up 2 vote down

http://snipplr.com/view/2234/export-mysql-query-results-to-csv/

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.