Mysql
 sql >> Database >  >> RDS >> Mysql

Scrivere un file PHP da leggere da CSV ed eseguire query SQL

fgetcsv può essere utilizzato per analizzare i file CSV. Il metodo mysql_query può essere utilizzato per eseguire query MySQL.

Il codice completo è il seguente:

<?php
$fin = fopen('catalog_product_entity.csv','r') or die('cant open file');
$link = mysql_connect('localhost', 'm118', 'pw');
If (!$link) {
    die ('Could not connect: ' . mysql_error());
}
@mysql_select_db('m118') or die ('Unable to select database');
echo "Connection succeeded <br />\n";
while (($data=fgetcsv($fin,1000,","))!==FALSE) {
    $query = "UPDATE catalog_product_entity SET sku='$data[1]' WHERE entity_id='$data[0]'";
    mysql_query($query);
    echo "Record updated <br />\n";
    }
fclose($fin);
mysql_close();
?>