Does anyone know how to solve the Arcade 2025 February Week 4 mini-lab: BigQuery 3 and mini-lab: BigQuery 4? I’ve tried multiple times but haven’t passed it yet.
Here is part of the requirements for mini-lab 3:
Overview
Labs are timed and cannot be paused. The timer starts when you click Start Lab.
The included cloud terminal is preconfigured with the gcloud SDK.
Use the terminal to execute commands and then click Check my progress to verify your work.
You are a data engineer and you are managing Google BigQuery, a data warehouse service that lets you store, manage, and analyze large datasets.
In this scenario, you have a pre-created dataset Google Cloud Platform. You are also provided the two tables with detailed schema and entries.
Your goal is to execute the query to select records that have matching values in both tables by using the fields from both tables. Once you have the data, save the results in a view with the name "Product_View".
You need to complete the following tasks:
Check the tables schemas and data that is created inside the Inventory Dataset.
Run the query to fetch the product_name and price after applying the INNER_JOIN on the products and category table where category_id = 1.
You should see a similar output:
|__product_name__ | __price__ |
| ------------- | -----------|
| Fitness Tracker | 80.0 |
| Portable Monitor | 200.0 |
| Smartphone | 800.0 |
| Smartwatch | 250.0 |
| Fitness Smartwatch| 150.0 |
| Monitor | 300.0 |
| Tablet | 600.0 |
| Laptop | 1200.0 |
User | Count |
---|---|
21 | |
13 | |
8 | |
7 | |
2 |