MySQL I need to import data from a txt file but in the file I have different datatype.
This is how it looks in workbench:
load data local infile 'C:/Users/user/Desktop/visits.txt'
into table Docs
character set utf8
fields terminated by ','
enclosed by '"'
ignore 4 lines
(VisitDate,EntranceHour,FirstName,LastName,DocName,DocLastName,Hospital)
;
When I proceed I get warnings for VisitDate, in txt is this format 22/04/2005.
Thanks!