select id, created_at_timestamp, cast(created_at_timestamp AS long) AS timeInMs, TIMECONVERT(created_at_timestamp, 'MILLISECONDS', 'DAYS') AS convertedTimefrom githubEventsLIMIT1
select id, created_at_timestamp, cast(created_at_timestamp AS long) AS timeInMs, TIMECONVERT(created_at_timestamp, 'MILLISECONDS', 'HOURS') AS convertedTimefrom githubEventsLIMIT1
select id, created_at_timestamp, cast(created_at_timestamp AS long) AS timeInMs, TIMECONVERT(created_at_timestamp, 'MILLISECONDS', 'SECONDS') AS convertedTimefrom githubEventsLIMIT1
select id, created_at_timestamp, cast(created_at_timestamp AS long) AS timeInMs, TIMECONVERT(created_at_timestamp, 'MILLISECONDS', 'MILLISECONDS') AS convertedTimefrom githubEventsLIMIT1
select id, created_at_timestamp, cast(created_at_timestamp AS long) AS timeInMs, TIMECONVERT(created_at_timestamp, 'MILLISECONDS', 'MICROSECONDS') AS convertedTimefrom githubEventsLIMIT1
select id, created_at_timestamp, cast(created_at_timestamp AS long) AS timeInMs, TIMECONVERT(created_at_timestamp, 'MILLISECONDS', 'NANOSECONDS') AS convertedTimefrom githubEventsLIMIT1