mini lab : BigQuery : 5 Problems

Has anyone been able to complete mini lab: Big Query 5?
When I do the lab I am able to create a table containing the male_customers and export it successfully, but when I go to check my progress the progress check is only successful for task 1 and task 3, but it keeps failing for task 3 even though the table has been created.

kdambiec_0-1742897960942.png

I'm also able to run a query against the male_customers table

kdambiec_1-1742897985656.png

 

0 5 151
5 REPLIES 5

@kdambiec Yes facing same problem! have you reported?

Just now checked lab and all tasks are working fine. I am able complete lab

Used the following query but task 2 doesn't work, task 3 is checked though..

CREATE OR REPLACE TABLE \`${PROJECT_ID}.${DATASET_NAME}.${MALE_TABLE_NAME}\` AS
SELECT *
FROM \`${PROJECT_ID}.${DATASET_NAME}.${TABLE_NAME}\`
WHERE Gender = 'Male'

Well, apparently it only need CustomerID, Gender but didn't indicate as required in the instruction...

This works
bq query --use_legacy_sql=false 'CREATE OR REPLACE TABLE customer_details.male_customers AS SELECT CustomerID, Gender FROM customer_details.customers WHERE Gender = "Male"'

Top Labels in this Space