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

Come caricare i dati della data in MySQL quando si utilizza LOAD DATA

La tua stringa di formato per STR_TO_DATE() è invalido. Le ore nei dati di esempio hanno il formato 24 ore (%H o %k ) invece di 12 ore (%h ). Puoi vedere tutti i possibili specificatori del formato della data qui .

Cambia

%d-%b-%y %h:%i:%s

a

%d-%b-%y %H:%i:%s
         ^^

La tua affermazione potrebbe assomigliare a questa

LOAD DATA INFILE '/path/to/temp_test.csv'
IGNORE INTO TABLE temp_test
  FIELDS TERMINATED BY ',' OPTIONALLY ENCLOSED BY '"'
  LINES TERMINATED BY '\r\n' -- or '\n'
  IGNORE 1 LINES
(@c1, c2)
SET c1 = STR_TO_DATE(@c1,'%d-%b-%y %H:%i:%s');

Dopo il caricamento con i dati di esempio

mysql> select * from temp_test;
+---------------------+------+
| c1                  | c2   |
+---------------------+------+
| 2012-06-07 22:50:19 | abc  |
| 2013-06-07 22:50:19 | bcd  |
+---------------------+------+
2 rows in set (0.00 sec)