Data Science Hub
  • Data Science Hub
  • STATISTICS
    • Introduction
    • Fundamentals
      • Data Types
      • Central Tendency, Asymmetry, and Variability
      • Sampling
      • Confidence Interval
      • Hypothesis Testing
    • Distributions
      • Exponential Distribution
    • A/B Testing
      • Sample Size Calculation
      • Multiple Testing
  • Database
    • Database Fundamentals
    • Database Management Systems
    • Data Warehouse vs Data Lake
  • SQL
    • SQL Basics
      • Creating and Modifying Tables/Views
      • Data Types
      • Joins
    • SQL Rules
    • SQL Aggregate Functions
    • SQL Window Functions
    • SQL Data Manipulation
      • String Operations
      • Date/Time Operations
    • SQL Descriptive Stats
    • SQL Tips
    • SQL Performance Tuning
    • SQL Customization
    • SQL Practice
      • Designing Databases
        • Spotify Database Design
      • Most Commonly Asked
      • Mixed Queries
      • Popular Websites For SQL Practice
        • SQLZoo
          • World - BBC Tables
            • SUM and COUNT Tutorial
            • SELECT within SELECT Tutorial
            • SELECT from WORLD Tutorial
            • Select Quiz
            • BBC QUIZ
            • Nested SELECT Quiz
            • SUM and COUNT Quiz
          • Nobel Table
            • SELECT from Nobel Tutorial
            • Nobel Quiz
          • Soccer / Football Tables
            • JOIN Tutorial
            • JOIN Quiz
          • Movie / Actor / Casting Tables
            • More JOIN Operations Tutorial
            • JOIN Quiz 2
          • Teacher - Dept Tables
            • Using Null Quiz
          • Edinburgh Buses Table
            • Self join Quiz
        • HackerRank
          • SQL (Basic)
            • Select All
            • Select By ID
            • Japanese Cities' Attributes
            • Revising the Select Query I
            • Revising the Select Query II
            • Revising Aggregations - The Count Function
            • Revising Aggregations - The Sum Function
            • Revising Aggregations - Averages
            • Average Population
            • Japan Population
            • Population Density Difference
            • Population Census
            • African Cities
            • Average Population of Each Continent
            • Weather Observation Station 1
            • Weather Observation Station 2
            • Weather Observation Station 3
            • Weather Observation Station 4
            • Weather Observation Station 6
            • Weather Observation Station 7
            • Weather Observation Station 8
            • Weather Observation Station 9
            • Weather Observation Station 10
            • Weather Observation Station 11
            • Weather Observation Station 12
            • Weather Observation Station 13
            • Weather Observation Station 14
            • Weather Observation Station 15
            • Weather Observation Station 16
            • Weather Observation Station 17
            • Weather Observation Station 18
            • Weather Observation Station 19
            • Higher Than 75 Marks
            • Employee Names
            • Employee Salaries
            • The Blunder
            • Top Earners
            • Type of Triangle
            • The PADS
          • SQL (Intermediate)
            • Weather Observation Station 5
            • Weather Observation Station 20
            • New Companies
            • The Report
            • Top Competitors
            • Ollivander's Inventory
            • Challenges
            • Contest Leaderboard
            • SQL Project Planning
            • Placements
            • Symmetric Pairs
            • Binary Tree Nodes
            • Interviews
            • Occupations
          • SQL (Advanced)
            • Draw The Triangle 1
            • Draw The Triangle 2
            • Print Prime Numbers
            • 15 Days of Learning SQL
          • TABLES
            • City - Country
            • Station
            • Hackers - Submissions
            • Students
            • Employee - Employees
            • Occupations
            • Triangles
        • StrataScratch
          • Netflix
            • Oscar Nominees Table
            • Nominee Filmography Table
            • Nominee Information Table
          • Audible
            • Easy - Audible
          • Spotify
            • Worldwide Daily Song Ranking Table
            • Billboard Top 100 Year End Table
            • Daily Rankings 2017 US
          • Google
            • Easy - Google
            • Medium - Google
            • Hard - Google
        • LeetCode
          • Easy
  • Python
    • Basics
      • Variables and DataTypes
        • Lists
        • Dictionaries
      • Control Flow
      • Functions
    • Object Oriented Programming
      • Restaurant Modeler
    • Pythonic Resources
    • Projects
  • Machine Learning
    • Fundamentals
      • Supervised Learning
        • Classification Algorithms
          • k-Nearest Neighbors
            • kNN Parameters & Attributes
          • Logistic Regression
        • Classification Report
      • UnSupervised Learning
        • Clustering
          • Evaluation
      • Preprocessing
        • Scalers: Standard vs MinMax
        • Feature Selection vs Dimensionality Reduction
        • Encoding
    • Frameworks
    • Machine Learning in Advertising
    • Natural Language Processing
      • Stopwords
      • Name Entity Recognition (NER)
      • Sentiment Analysis
        • Agoda Reviews - Part I - Scraping Reviews, Detecting Languages, and Preprocessing
        • Agoda Reviews - Part II - Sentiment Analysis and WordClouds
    • Recommendation Systems
      • Spotify Recommender System - Artists
  • Geospatial Analysis
    • Geospatial Analysis Basics
    • GSA at Work
      • Web Scraping and Mapping
  • GIT
    • GIT Essentials
    • Connecting to GitHub
  • FAQ
    • Statistics
  • Cloud Computing
    • Introduction to Cloud Computing
    • Google Cloud Platform
  • Docker
    • What is Docker?
Powered by GitBook
On this page
  • Find the best publishers based on total sales
  • Find the genres that yielded the highest sales
  • Find details of oscar winners between 2001 and 2009

Was this helpful?

  1. SQL
  2. SQL Practice
  3. Popular Websites For SQL Practice
  4. StrataScratch
  5. Audible

Easy - Audible

Table: global_weekly_charts_2013_2014

Schema:

pos
int

game

varchar

platform

varchar

publisher

varchar

genre

varchar

week

int

weekly

int

total

int

week_ending

datetime

id

int

Preview:

pos
game
platform
publisher
genre
week
weekly
total
week_ending
id

2352

UFC Personal Trainer: The Ultimate Fitness System

Wii

THQ

Sports

128

1538

153649

2013-12-21

21726

5031

Bleach: The Blade of Fate

DS

Sega

Fighting

281

44

442622

2013-07-13

168837

5725

Gundam Memories: Tatakai no Kioku

PSP

Namco Bandai Games

Action

98

18

122023

2013-05-04

229810

4811

Jurassic: The Hunted

Wii

Activision

Shooter

207

62

136931

2013-10-19

81464

3910

Our House Party!

Wii

Majesco Entertainment

Simulation

186

103

53086

2013-04-13

245724

Find the best publishers based on total sales

Find the best publishers based on total sales made by each publisher. Output publishers alongside their total sales. Order records based on the sales in descending order.

SELECT publisher, SUM(total) AS total_sales
FROM global_weekly_charts_2013_2014
GROUP BY 1
ORDER BY SUM(total) DESC;

Find the genres that yielded the highest sales

Find the genres that yielded the highest sales. Output the genre alongside its total sales. Order results based on the total sales in descending order.

SELECT genre, SUM(total) AS total_sales
FROM global_weekly_charts_2013_2014
GROUP BY 1
ORDER BY SUM(total) DESC;

Find details of oscar winners between 2001 and 2009

Find the details of oscar winners between 2001 and 2009.

Table: oscar_nominees

Schema:

year

int

category

varchar

nominee

varchar

movie

varchar

winner

bool

id

int

Preview:

year
category
nominee
movie
winner
id

2010

actor in a leading role

James Franco

127 Hours

FALSE

648

2003

actor in a supporting role

Benicio Del Toro

21 Grams

FALSE

139

2003

actress in a leading role

Naomi Watts

21 Grams

FALSE

1119

2001

actress in a supporting role

Jennifer Connelly

A Beautiful Mind

TRUE

710

2001

actor in a leading role

Russell Crowe

A Beautiful Mind

FALSE

1315

SELECT * FROM oscar_nominees
WHERE year BETWEEN 2001 AND 2009
AND winner = TRUE

Last updated 1 year ago

Was this helpful?

StrataScratch
StrataScratch
StrataScratch
Logo
Logo
Logo