Skip to content

danndch/snowflake

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 

Repository files navigation

Snowflake

Account Creation

https://www.snowflake.com/en

Data

https://app.snowflake.com/marketplace/listing/GZSNZ7F5UH/starschema-covid-19-epidemiological-data

Coding Challenge

1. How many positive COVID-19 tests are in our data?

SELECT ... FROM ...;

2. What percentage of COVID-19 cases resulted in death?

SELECT ... FROM ...;

3. How many positive COVID-19 tests are in each state?

Order from high-to-low.

SELECT ... FROM ...
GROUP BY ... ORDER BY ...;

4. When was the earliest positive COVID-19 test in each state?

Order from earliest-to-latest.

SELECT ... FROM ...
WHERE ... GROUP BY ... ORDER BY ...;

5. Which day of the week had the most positive COVID-19 tests?

Order from high-to-low.

SELECT DAYNAME(...), ... FROM ...
GROUP BY ... ORDER BY ...;

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published