Opiniones sobre Examining Billing data with Big Query
1305 opiniones
Robert J. · Se revisó hace más de 8 años
Phil B. · Se revisó hace más de 8 años
Kiran D. · Se revisó hace más de 8 años
Tim T. · Se revisó hace más de 8 años
Roberto B. · Se revisó hace más de 8 años
Anirudh Y. · Se revisó hace más de 8 años
Keith C. · Se revisó hace más de 8 años
Travis S. · Se revisó hace más de 8 años
Askar K. · Se revisó hace más de 8 años
Vlad I. · Se revisó hace más de 8 años
Naseem U. · Se revisó hace más de 8 años
Dariusz G. · Se revisó hace casi 9 años
Hiroaki S. · Se revisó hace casi 9 años
Yifei M. · Se revisó hace casi 9 años
did not work
cyril w. · Se revisó hace casi 9 años
Ernesto R. · Se revisó hace casi 9 años
Enmanuel D. · Se revisó hace casi 9 años
Jonathan P. · Se revisó hace casi 9 años
Edmar C. · Se revisó hace casi 9 años
Amit S. · Se revisó hace casi 9 años
Jonathan G. · Se revisó hace casi 9 años
Jose V. · Se revisó hace casi 9 años
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. · Se revisó hace casi 9 años
Leon J. · Se revisó hace casi 9 años
Cam C. · Se revisó hace casi 9 años
No garantizamos que las opiniones publicadas provengan de consumidores que hayan comprado o utilizado los productos. Google no verifica las opiniones.