I have data with date format 1577234966837.
I uploaded this data in table via command :
load data infile 'C:/file.tsv'
into table table_1
fields terminated by '\t'
lines terminated by'\n'
ignore 1 lines (value, @timestamp)
set timestamp = FROM_UNIXTIME(@timestamp);
Command successful, but value in column timestamp is null. Ho to upload this format?