BigQuery, Snowflake & ClickHouse Timestamp Converter

Cloud data warehouses each serialize timestamps slightly differently: BigQuery (ISO 8601 with `T`/space), Snowflake (microsecond ISO), ClickHouse (ISO 8601), kdb+ (internal int64), InfluxDB (RFC 3339 nanosecond) and Presto/Hive (ISO 8601).

This converter renders your date-time in each warehouse's canonical form so you can build SQL strings, check COPY/LOAD outputs, and debug timestamp column rendering.

Timezone:
Enter a date-time above to see the conversion results.

BigQuery, Snowflake & ClickHouse Timestamp Converter Quick Reference

FormatPattern / DescriptionExample 1Example 2
BigQuery TIMESTAMPUTC Standard2026-08-13 14:30:00 UTC2026-01-01 00:00:00 UTC
Snowflake TIMESTAMP_TZWith timezone offset2026-08-13 14:30:00.000 +00002026-01-01 00:00:00.000 +0000
ClickHouse DateTime64YYYY-MM-DD HH:mm:ss.nnnnnnnnn2026-08-13 14:30:002026-01-01 00:00:00
Kdb+ / q Timestampyyyy.MM.ddD...2026.08.13D14:30:00.0000000002026.01.01D00:00:00.000000000
InfluxDB Line ProtocolTimestamp (Seconds)17866314001767225600
Presto / Hive / TrinoYYYY-MM-DD HH:mm:ss Zone2026-08-13 14:30:00 UTC2026-01-01 00:00:00 UTC

* Examples are rendered in UTC for the fixed sample instants above.

When to Use BigQuery, Snowflake & ClickHouse Timestamp

Data warehouse loading

Generate engine-correct timestamp literals for COPY INTO, INSERT and query filters in BigQuery/Snowflake.

Schema & column type debugging

Check how each warehouse renders `TIMESTAMP`, `TIMESTAMP_NTZ` and `DateTime64` columns for comparison with source data.

Data lake partitioning

Produce consistent timestamp strings for Hive/Presto partition keys across engines.

Frequently Asked Questions

What is the BigQuery timestamp format?

ISO 8601 with a space or T separator: `2026-08-13 14:30:00 UTC` or `2026-08-13T14:30:00Z`. BigQuery also supports RFC 3339 strings in DML.

What is the Snowflake timestamp format?

`TIMESTAMP_NTZ` renders `2026-08-13 14:30:00`; `TIMESTAMP_TZ` adds the offset: `2026-08-13 14:30:00 +00:00`. Microsecond precision by default.

What is the ClickHouse DateTime format?

ISO 8601: `2026-08-13 14:30:00` for `DateTime`, `2026-08-13 14:30:00.123456` for `DateTime64`. Internal storage is Unix-style seconds since epoch.

What is the InfluxDB timestamp format?

RFC 3339 with nanoseconds: `2026-08-13T14:30:00.123456789Z`. Line protocol timestamps default to ns precision.

Related Time Format Converters

All Format Guides

Need to Convert Between All Formats?

Use the main Time Format Converter for instant conversion across 100+ formats — epoch, ISO 8601, RFC 3339, SQL datetime, military time and more in one click.

Open Time Format Converter