HomeIntegrationsPricingLearn
Sign inGet started

Data to decisions, faster.

Book a Demo

Learn

  • Blog
  • Webinars
  • SQL tutorials

Legal & security

  • Privacy Policy
  • Terms of Use
  • Cookies Policy
  • Trust Center
  • Security

© 2026 Count Technologies Ltd. All rights reserved.

SQL Resources

Count is the best SQL IDE, wrapped up in the best data analysis tool, all inside the best BI platform.

ARRAY_AGG
Arrays Explained
Arrays Explained
CASE
CAST
COALESCE
CONCAT
COUNT [DISTINCT]
CURRENT_DATE
CURRENT_DATETIME
DefinitionPractical InfoRelated Pages
CURRENT_TIMESTAMP
DATETIME_DIFF
DATETIME_TRUNC
DATE_DIFF
DATE_TRUNC
Data Types
Dates and Times
EXTRACT
IF
MEDIAN
SUBSTR
String Functions Explained
TIMESTAMP_DIFF
TIMESTAMP_TRUNC
TIME_DIFF
TIME_TRUNC
UNNEST
Window Functions Explained
SQL Resources/BigQuery Standard SQL/CURRENT_DATETIME

CURRENT_DATETIME

CURRENT_DATETIME function. Definition, syntax, examples and common errors using BigQuery Standard SQL. The CURRENT_DATETIME function returns the date and time at the moment the query is evaluated.

Definition

The BigQuery CURRENT_DATETIME function returns the date and time at the moment the query is evaluated. By default the date time will be in UTC timezone but a specific timezone can be selected.

datetime_utcdatetime_sydneydatetime_plus_8
2021-02-12T12:26:04.8445462021-02-12T23:26:04.8445462021-02-12T20:26:04.844546

Practical Info

  • The returned data type is a DATETIME.
  • The full list of supported timezone names can be found here.
  • If the time_zone argument is NULL the function returns NULL.

Related Pages

  • CURRENT_DATE
  • CURRENT_TIMESTAMP
CURRENT_DATETIME([time_zone])
SELECT
  CURRENT_DATETIME() AS datetime_utc,
  CURRENT_DATETIME('Australia/Sydney') AS datetime_sydney,
  CURRENT_DATETIME('+08:00') AS datetime_plus_8

Got a CSV?
See it differently in <2 mins

Get started for FREEWatch our CEO do it