I am trying to store data into my Athena DB from S3 and I have date time format that looks like this :-
20171011133902
I am trying to set format to timestamp but it is not recognizable, thus no data was inserted into the table. I set the the format as bigint just to insert the data and my query looks something like this.
CREATE EXTERNAL TABLE IF NOT EXISTS default.elb_logs ( 'request_timestamp' bigint, 'id' int, .....)
I tried to convert in Quicksight, however when I edit data fields and change it to date, i became like this :-
2033-12-02T01:51:53.000Z
Can someone help me on how I can handle this type of date format?