Mysql
 sql >> Teknologi Basis Data >  >> RDS >> Mysql

Mengekspor data dari database di php, dan format file untuk ekspor excel harus seperti buku kerja windows 97-2003

Anda cukup memberi tahu database MySQL Anda untuk membuangnya sebagai CSV:

$file = 'D:/path/to/website/dump.sql';

// The SELECT...INTO query is unable to overwrite if the
// file already exists, so delete it beforehand:
if (is_file($file))
    unlink($file);

$query = "
    SELECT id, title, created   -- The fields to export
    INTO OUTFILE '{$file}'      -- The file
    FIELDS TERMINATED BY ','    -- Delimiter
    OPTIONALLY ENCLOSED BY '\"' -- Quote if necessary
    LINES TERMINATED BY '\n'    -- End line with LF newline
    FROM tbl_employee           -- Table name
";

$db = new MySQLi('localhost', 'root', '', 'your_database');
$db->query($query);

// Show any errors...
if ($db->error) {
    var_dump($db->error);
}


  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. Permintaan lambat setelah memutakhirkan mysql dari 5,5 ke 5,6

  2. Menjalankan beberapa kueri asli sekaligus

  3. Dapatkan nama kolom yang memiliki nilai maksimal dalam satu baris sql

  4. Python Pandas to_sql, bagaimana cara membuat tabel dengan kunci utama?

  5. Mengimpor file sql besar ke MySql melalui baris perintah