Examining Billing data with Big Query Reviews

1306 reviews

Robert J. · Reviewed מעל 8 שנים ago

Phil B. · Reviewed מעל 8 שנים ago

Kiran D. · Reviewed מעל 8 שנים ago

Tim T. · Reviewed מעל 8 שנים ago

Roberto B. · Reviewed מעל 8 שנים ago

Anirudh Y. · Reviewed מעל 8 שנים ago

Keith C. · Reviewed מעל 8 שנים ago

Travis S. · Reviewed מעל 8 שנים ago

Askar K. · Reviewed מעל 8 שנים ago

Vlad I. · Reviewed מעל 8 שנים ago

Naseem U. · Reviewed מעל 8 שנים ago

Dariusz G. · Reviewed מעל 8 שנים ago

Hiroaki S. · Reviewed מעל 8 שנים ago

Yifei M. · Reviewed מעל 8 שנים ago

did not work

cyril w. · Reviewed מעל 8 שנים ago

Ernesto R. · Reviewed מעל 8 שנים ago

Enmanuel D. · Reviewed מעל 8 שנים ago

Jonathan P. · Reviewed מעל 8 שנים ago

Edmar C. · Reviewed מעל 8 שנים ago

Amit S. · Reviewed מעל 8 שנים ago

Jonathan G. · Reviewed מעל 8 שנים ago

Jose V. · Reviewed מעל 8 שנים ago

There is a problem with this query: > Step 5: What is the most frequently used product costing more than a dollar? > > Paste the following query: > > SELECT product, cost, COUNT(*) > FROM [cloud-training-prod-bucket:arch_infra.billing_data] > WHERE ([cloud-training-prod-bucket:arch_infra.billing_data.cost] > 1) > GROUP BY cost, product > LIMIT 200 This query is not very useful, as it groups together usages over a dollar that have the exact same cost. In other words, all of the usages that were exactly $1.62 are grouped together; not sure what that's telling us. Maybe it should be: SELECT product, SUM(cost) AS totalcost, COUNT(*) AS usages FROM [cloud-training-prod-bucket:arch_infra.billing_data] WHERE [cloud-training-prod-bucket:arch_infra.billing_data.cost] > 1 GROUP BY product ORDER BY usages DESC LIMIT 1 This query finds out the total cost for all usages over a dollar and counts them, returning the most-frequently used product as asked by the lab. Also, lab failed to mention that you need to switch to the correct project in the BigTable interface before being able to perform any of these queries.

Brett L. · Reviewed מעל 8 שנים ago

Leon J. · Reviewed מעל 8 שנים ago

Cam C. · Reviewed מעל 8 שנים ago

We do not ensure the published reviews originate from consumers who have purchased or used the products. Reviews are not verified by Google.