BaşlayınÜcretsiz Başlayın

Formatting dates for reports

Using dates and timestamps effectively in BigQuery is a core skill, especially when working with long datasets with multiple entries. This exercise will walk through several ways to query a timestamp from our orders dataset.

Bu egzersiz

Introduction to BigQuery

kursunun bir parçasıdır
Kursu Görüntüle

Uygulamalı interaktif egzersiz

Bu örnek kodu tamamlayarak bu egzersizi bitirin.

-- Finish the query to find sales on 

SELECT
	COUNT(order_id)
FROM
	ecommerce.ecomm_order_details
-- Add the correct date part and date using the correct format
WHERE EXTRACT(___ from order_purchase_timestamp) = '___'
Kodu Düzenle ve Çalıştır