good day community, during this lab at the first checkpoint, it keeps telling me to add column after the last sql query. dont know what im doing wrong
lab :
Solved! Go to Solution.
Task 1. Pin a project to the BigQuery resource tree
Click Navigation menuNavigation menu icon > BigQuery.
2. Click + Add
Task 2. Find the total number of customers who went through checkout :
Copy the below code and click on Run:
#standardSQL
SELECT FROM `data-to-inghts.ecommerce.rev_transactions` LIMIT 1000
3. Copy the below code and click on Run:
#standardSQL
SELECT * FROM [data-to-insights:ecommerce.rev_transactions] LIMIT 1000
What's wrong with the new previous query to view 1000 items?
checkWe are using legacy SQL
4.Copy the below code and click on Run:
#standardSQL
SELECT FROM `data-to-insights.ecommerce.rev_transactions`
5.Copy the below code and click on Run:
#standardSQL
SELECT
fullVisitorId
FROM `data-to-insights.ecommerce.rev_transactions`
6.Copy the below code and click on Run:
#standardSQL
SELECT fullVisitorId hits_page_pageTitle
FROM `data-to-insights.ecommerce.rev_transactions` LIMIT 1000
How many columns will the previous query return?
check1, a column named hits_page_pageTitle
7.Copy the below code and click on Run:
#standardSQL
SELECT
fullVisitorId
, hits_page_pageTitle
FROM `data-to-insights.ecommerce.rev_transactions` LIMIT 1000
8.Copy the below code and click on Run:
#standardSQL
SELECT
fullVisitorId
, hits_page_pageTitle
FROM `data-to-insights.ecommerce.rev_transactions` LIMIT 1000
9. Copy the below code and click on Run:
#standardSQL
SELECT
COUNT(fullVisitorId) AS visitor_count
, hits_page_pageTitle
FROM `data-to-insights.ecommerce.rev_transactions`
10. Copy the below code and click on Run:
#standardSQL
SELECT
COUNT(DISTINCT fullVisitorId) AS visitor_count
, hits_page_pageTitle
FROM `data-to-insights.ecommerce.rev_transactions`
GROUP BY hits_page_pageTitle
11. Copy the below code and click on Run:
#standardSQL
SELECT
COUNT(DISTINCT fullVisitorId) AS visitor_count
, hits_page_pageTitle
FROM `data-to-insights.ecommerce.rev_transactions`
WHERE hits_page_pageTitle = "Checkout Confirmation"
GROUP BY hits_page_pageTitle
Click Check my progress to verify the objective.
Not sure what I missed but your instructions helped me get credit
did you solve the problem? please help me also? send a email on (PII Removed by Staff)
I have also this problem during the lab Troubleshooting Common SQL Errors
Task 1. Pin a project to the BigQuery resource tree
Click Navigation menuNavigation menu icon > BigQuery.
2. Click + Add
Task 2. Find the total number of customers who went through checkout :
Copy the below code and click on Run:
#standardSQL
SELECT FROM `data-to-inghts.ecommerce.rev_transactions` LIMIT 1000
3. Copy the below code and click on Run:
#standardSQL
SELECT * FROM [data-to-insights:ecommerce.rev_transactions] LIMIT 1000
What's wrong with the new previous query to view 1000 items?
checkWe are using legacy SQL
4.Copy the below code and click on Run:
#standardSQL
SELECT FROM `data-to-insights.ecommerce.rev_transactions`
5.Copy the below code and click on Run:
#standardSQL
SELECT
fullVisitorId
FROM `data-to-insights.ecommerce.rev_transactions`
6.Copy the below code and click on Run:
#standardSQL
SELECT fullVisitorId hits_page_pageTitle
FROM `data-to-insights.ecommerce.rev_transactions` LIMIT 1000
How many columns will the previous query return?
check1, a column named hits_page_pageTitle
7.Copy the below code and click on Run:
#standardSQL
SELECT
fullVisitorId
, hits_page_pageTitle
FROM `data-to-insights.ecommerce.rev_transactions` LIMIT 1000
8.Copy the below code and click on Run:
#standardSQL
SELECT
fullVisitorId
, hits_page_pageTitle
FROM `data-to-insights.ecommerce.rev_transactions` LIMIT 1000
9. Copy the below code and click on Run:
#standardSQL
SELECT
COUNT(fullVisitorId) AS visitor_count
, hits_page_pageTitle
FROM `data-to-insights.ecommerce.rev_transactions`
10. Copy the below code and click on Run:
#standardSQL
SELECT
COUNT(DISTINCT fullVisitorId) AS visitor_count
, hits_page_pageTitle
FROM `data-to-insights.ecommerce.rev_transactions`
GROUP BY hits_page_pageTitle
11. Copy the below code and click on Run:
#standardSQL
SELECT
COUNT(DISTINCT fullVisitorId) AS visitor_count
, hits_page_pageTitle
FROM `data-to-insights.ecommerce.rev_transactions`
WHERE hits_page_pageTitle = "Checkout Confirmation"
GROUP BY hits_page_pageTitle
Click Check my progress to verify the objective.
Not sure what I missed but your instructions helped me get credit
im the original poster, i refreshed the page and followed this solution and it worked, sorry I forgot to update everyone
User | Count |
---|---|
27 | |
14 | |
5 | |
2 | |
2 |