Jump to content

[SOLVED] LOAD DATA and datetime


mycow

Recommended Posts

Hello

 

I have the following

LOAD DATA INFILE 'c:\\file.csv' INTO TABLE file_input
FIELDS TERMINATED BY ';' ENCLOSED BY '"'
IGNORE 2 LINES
(col1,
col2,
col3,
col4,
col5,
col6,
col7,
col8,
@col9,
@col10,
@col11,
col12,
col13,
col14,
col15,
col16,
col17,
col18,
col19,
col20)
set
col9 = str_to_date(@col9, '%d-%m-%Y'),
col10 = str_to_date(@col10, '%d-%m-%Y'),
col11 = str_to_date(@col11, '%d-%m-%Y')
;

 

My problem is that col9 col10 and col11 are datetime and don't know how to fix the syntax to include time. Can anyone help?

 

Thank you

Link to comment
https://forums.phpfreaks.com/topic/146081-solved-load-data-and-datetime/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.