1. Learn
  2. /
  3. Courses
  4. /
  5. Introduction to BigQuery

Connected

Exercise

Using COUNTIF

One of the most useful GoogleSQL aggregate functions is COUNTIF which allows you to calculate conditional counts with less code. In this exercise, you will count all the products over a specific weight and group them by category.

Instructions

100 XP
  • Write a query that uses the COUNTIF function to find all the products over 5000 grams from the ecommerce.ecomm_products table.
  • Group the query by the product_category_name_english column.