sql >> データベース >  >> RDS >> Mysql

phpでデータベースからデータをエクスポートし、Excelエクスポートのファイル形式はWindows97-2003ワークブックのようにする必要があります

    MySQLデータベースに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. 'System.Data.Entity.Migrations.DbMigrationsConfiguration`1'のタイプ初期化子が例外をスローしました

    2. AndroidSQLiteクローズ例外

    3. タグに基づいて同様のオブジェクトを取得する方法

    4. 従業員テーブルから2番目に高い給与を見つけるにはどうすればよいですか?