1 min read

Purchases by day on tablet - GA4 BigQuery

Learn to query Google Analytics 4 data from BigQuery using SQL.

With Google Analytics 4 (GA4), you will now be able to store your data in Google BigQuery which opens up lots of interesting possibilities with your data. Ask questions of your data with SQL.

Query: What are the purchases by day on tablet?

select
event_date AS date,
sum(ecommerce.total_item_quantity) as total_purchases
from `bigquery-public-data.ga4_obfuscated_sample_ecommerce.events_*`
where event_name = 'purchase' 
and _TABLE_SUFFIX between '20210101' and '20210107'
and device.category = 'tablet'
group by event_date
order by event_date asc

Output:

Notes:

  • This query can be improved to include dates which have zero purchases on tablet devices.
  • All queries reference the BigQuery sample GA4 data set. You can try this for free and Google provides a substantial free credit.
  • The dataset contains data from 1 Nov 2020 to 31 Jan 2021.
  • You will need to update the data source if you want to use this query with your own data.
  • You can update the date range to suit your needs. I have chosen 1 Jan 2021 to 7 Jan 2021 for this example.
  • Occasionally the results may not line up perfectly when querying this sample dataset.

Want to learn how to get more from your data? Get in touch with me on LinkedIn.