Aan de slagGa gratis aan de slag

Limiting the amount of data

First, you will need to find the correct way to optimize this simple query by using only the required columns you need.

Deze oefening maakt deel uit van de cursus

Introduction to BigQuery

Cursus bekijken

Oefeninstructies

  • Reduce the amount of data being queried in the final query to include only the order_id and payment_type.

Praktische interactieve oefening

Probeer deze oefening eens door deze voorbeeldcode in te vullen.

-- Write the most efficient query that uses only the required data
SELECT ___, ___
FROM ecommerce.ecomm_payments
LIMIT 10;
Code bewerken en uitvoeren