☁️
Cloud Computing
  • Introduction
  • Terminologies
    • Container
    • Kubernetes (K8s)
    • Serverless Computing
  • Services
    • Docker
    • Terraform
  • ☁️Cloud Computing Platforms
    • Google Cloud
      • Google Cloud Essentials
      • Management
        • Cloud IAM
      • Compute
        • Compute Engine
        • Kubernetes Engine
      • Resources
    • IBM Cloud
      • IBM Cloud Shell
      • Compute
      • Containers
      • Developer tools
      • Integration
      • Storage
      • Cloud Paks
    • Microsoft Azure
      • Compute
        • Functions
        • App Services
      • Networking
      • Storage
      • Web
      • Mobile
      • Databases
        • Cosmos DB
      • Analytics
      • AI + Machine Learning
      • Internet of things
      • Security
      • DevOps
      • Monitoring
      • Management and governance
      • Azure Stack
    • Amazon Web Services
    • Resources
  • Qwiklabs Challenge Labs
    • Create and Manage Cloud Resources
    • Deploy and Manage Cloud Environments with Google Cloud
    • Create ML Models with BigQuery ML
    • Insights from Data with BigQuery
    • Build a Website on Google Cloud
    • Build and Deploy a Docker Image to a Kubernetes Cluster
    • Build and Secure Networks in Google Cloud
    • Set Up and Configure a Cloud Environment in Google Cloud
    • Build and Optimize Data Warehouses with BigQuery: Challenge Lab
    • Scale Out and Update a Containerized Application on a Kubernetes Cluster
  • Whizlabs Challenge League
Powered by GitBook
On this page

Was this helpful?

  1. Qwiklabs Challenge Labs

Insights from Data with BigQuery

Query 3

SELECT * FROM ( 
    SELECT subregion1_name as state, 
        sum(cumulative_confirmed) as total_confirmed_cases 
    FROM `bigquery-public-data.covid19_open_data.covid19_open_data` 
    WHERE country_code="US" 
    AND date='2020-04-10' 
    AND subregion1_name is NOT NULL 
    GROUP BY subregion1_name 
    ORDER BY total_confirmed_cases DESC 
)
WHERE total_confirmed_cases > 1000

PreviousCreate ML Models with BigQuery MLNextBuild a Website on Google Cloud

Last updated 3 years ago

Was this helpful?