error 1265. Data truncated for column when trying to load data from txt file

后端 未结 8 2569
萌比男神i
萌比男神i 2020-12-18 18:52

I have table in mysql table table looks like

create table Pickup
(
PickupID int not null,
ClientID int not null,
PickupDate date not null,
PickupProxy  va         


        
8条回答
  •  刺人心
    刺人心 (楼主)
    2020-12-18 19:27

    You're missing FIELDS TERMINATED BY ',' and it's assuming you're delimiting by tabs by default.

提交回复
热议问题