SELECT ARRAY_TO_STRING([timestamp], '') as formatted_timestamp FROM table_name
SELECT UNIX_MILLIS(timestamp) as formatted_timestamp FROM table_name
SELECT FORMAT_TIMESTAMP('%FT%H:%M:%E*S%Ez', timestamp, 'UTC') as formatted_timestamp FROM table_name