Reputation: 631
I have a date vector in integer form of
20140117
20130325
20130530
etc. How can I transfer it to a datevector recognized by BigQuery? I tried to use Timestamp but it does not recognise the different parts of the vector.
Upvotes: 0
Views: 640
Reputation: 59165
Import it as a String, then you can run an ETL inside BigQuery easily:
SELECT TIMESTAMP('20140117')
2014-01-17 00:00:00 UTC
Upvotes: 3