sql >> Database >  >> RDS >> Mysql

Tekstbestand Structuur (tabellen)

CSV is triviaal met fputcsv :

$fh = fopen('output.csv', 'w') or die("can't open file");

// output header and first row
$row = mysql_fetch_assoc($result)
fputcsv($fh, array_keys($row));
fputcsv($fh, $row);

// output the remaining rows
while ($row = mysql_fetch_assoc($result)) {
    fputcsv($fh, $row);
}

fclose($fh);


  1. java.util.MissingFormatArgumentException:Formaatspecificatie:s

  2. Sorteer op dag van de week van maandag tot zondag

  3. Een DB-koppeling maken tussen twee Oracle-instanties

  4. PHP date('W') vs MySQL JAARWEEK(nu())