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

Importazione CSV MySQL:valore datetime

La data nel file di dati è già in un formato che MySQL dovrebbe comprendere in modo nativo. È solo racchiuso tra virgolette. Devi dire a LOAD DATA INFILE come gestire le quotazioni. Prova qualcosa del genere:

LOAD DATA LOCAL INFILE 'myData.csv'
INTO TABLE equity_last_import
FIELDS OPTIONALLY ENCLOSED BY '"' TERMINATED BY ','
LINES TERMINATED BY '\n'
(equity,last,last_date)

Aggiornamento:

Dato che hai detto che non funziona, ho creato una tabella di test e verificato che funziona. Ecco la prova:

Ho evidenziato i tuoi dati CSV dalla domanda e li ho incollati in un nuovo file chiamato myData.csv nel /tmp del mio sistema cartella. Poi mi sono connesso alla console mysql, sono passato al test database ed ha eseguito quanto segue:

mysql> create table equity_last_import (equity int, last decimal(10,2), last_date datetime) engine=innodb;
Query OK, 0 rows affected (0.02 sec)

mysql> LOAD DATA LOCAL INFILE '/tmp/myData.csv'
    -> INTO TABLE equity_last_import
    -> FIELDS OPTIONALLY ENCLOSED BY '"' TERMINATED BY ','
    -> LINES TERMINATED BY '\n'
    -> (equity,last,last_date);
Query OK, 10 rows affected (0.00 sec)
Records: 10  Deleted: 0  Skipped: 0  Warnings: 0

mysql> select * from equity_last_import;
+--------+--------+---------------------+
| equity | last   | last_date           |
+--------+--------+---------------------+
|   4108 |  48.74 | 2013-09-16 16:15:04 |
|   4249 |   8.10 | 2013-09-16 16:15:04 |
|   4197 |   3.81 | 2013-09-16 17:20:00 |
|   4139 |  26.81 | 2013-09-16 16:15:04 |
|   4218 |  24.83 | 2013-09-16 17:20:00 |
|   4260 |  79.72 | 2013-09-16 16:15:04 |
|   4270 | 450.12 | 2013-09-16 17:20:00 |
|   4242 |  30.38 | 2013-09-16 16:15:04 |
|   4193 |   1.42 | 2013-09-16 16:15:04 |
|   4134 |   3.77 | 2013-09-16 16:15:04 |
+--------+--------+---------------------+
10 rows in set (0.00 sec)

Vedere? Funziona perfettamente.

Un altro aggiornamento:

Hai specificato che ora stai ricevendo il seguente errore:

Out of range value for column 'last_date' at row 1

Il tuo file CSV ha un'intestazione? In tal caso, potresti voler aggiungere IGNORE 1 LINES al tuo LOAD DATA INFILE comando per dire a MySQL di saltare l'intestazione.