Important queries in SQL

In SQL you can make queries in number of ways ,though we can break complex codes into small readable and calculated parts.

There are a number of ways you can make queries in SQL, though we are suggesting a few ways through which complex codes can be broken into small, readable, and calculated parts.

First Case for “WITH” clause

If a hypothetical table is given like this, where top ratings are given to Hindi movies and their number of views worldwide. Read the following table carefully, where we list movies with the top 10 ratings and views.

MoviesRatingViews
1. Ramayana: The Legend of Prince Rama (1993)8.515432
2. Rocketry: The Nambi Effect (2022)8.413783
3. 777 Charlie (2022)8.413129
4. Hanky Panky (1979)8.412845
5. Nayakan (1987)8.412275
6. Anbe Sivam (2003)8.411961
7. Jai Bhim (2021)8.410032
8. Pariyerum Perumal (2018)8.48954
9. 3 Idiots (2009)8.48231
10. Manichithrathazhu (1993)8.47530

Business Question 1

Give us the table, where we want a list of movies with more than average number of views.

Explanation

The average number of views for all movies is 11417. Means we need a table with only those movies which are having views greater than 11417.

Code

Python
Python
Python
WITH temporary_frame as (select avg(Views) as avg_view FROM MOVIES) 
select * FROM MOVIES, 
temporary_frame where MOVIES.Views > temporary_frame.avg_view
MoviesRatingViews
1. Ramayana: The Legend of Prince Rama (1993)8.515432
2. Rocketry: The Nambi Effect (2022)8.413783
3. 777 Charlie (2022)8.413129
4. Hanky Panky (1979)8.412845
5. Nayakan (1987)8.412275
6. Anbe Sivam (2003)8.411961

Second case with clause

Let’s take another example where we are taking hypothetical data from a film to understand another use of the ”WITH” clause. We have a city-by-city collection of top hit movies from Indian cinema, as well as national collections.

MovieCityCity_Wise_CollectionCountrywide_CollectionBudgetVerdict
Baahubali 2 The Conclusion (2017)Mumbai1251.6421788.06250All Time Blockbuster
KGF Chapter 2 (2022)Mumbai845.61208100All Time Blockbuster
RRR (2022)Mumbai7981140550Blockbuster
Dangal (2016)Mumbai1449.212070.370All Time Blockbuster
Avengers End Game (2019)Mumbai13279189702500All Time Blockbuster
Sanju (2018)Mumbai411.95588.5100All Time Blockbuster
Tiger Zinda Hai (2017)Mumbai390.6558210Blockbuster
Baahubali 2 The Conclusion (2017)Delhi357.6121788.06250All Time Blockbuster
KGF Chapter 2 (2022)Delhi241.61208100All Time Blockbuster
RRR (2022)Delhi2281140550Blockbuster
Dangal (2016)Delhi414.062070.370All Time Blockbuster
Avengers End Game (2019)Delhi3794189702500All Time Blockbuster
Sanju (2018)Delhi117.7588.5100All Time Blockbuster
Tiger Zinda Hai (2017)Delhi111.6558210Blockbuster
Baahubali 2 The Conclusion (2017)Chennai178.8061788.06250All Time Blockbuster
KGF Chapter 2 (2022)Chennai120.81208100All Time Blockbuster
RRR (2022)Chennai1141140550Blockbuster
Dangal (2016)Chennai207.032070.370All Time Blockbuster
Avengers End Game (2019)Chennai1897189702500All Time Blockbuster
Sanju (2018)Chennai58.85588.5100All Time Blockbuster
Tiger Zinda Hai (2017)Chennai55.8558210Blockbuster

Let’s follow the given steps to study the business problem, code, and output of the table.

Business Question 2

Give us a table with minimum and maximum collections for each film, as well as cities.

Code

Create two custom views with City Wise Collection min and City Wise Collection max via using with nested “clause” statements.

SQL
SQL
SQL

WITH minimum_collection AS
  (SELECT Movie, MIN(City_Wise_Collection) AS min_cwc
   FROM movie_business
   GROUP BY Movie),

maximum_collection AS
 (SELECT Movie, MAX(City_Wise_Collection) AS max_cwc
  FROM movie_business
  GROUP BY Movie)

SELECT
  mb.City,
  mb.Movie,
  mb.City_Wise_Collection,
  mb.Countrywide_Collection,
  mb.budget,
  min.min_cwc,
  max.max_cwc

FROM movie_business mb
 JOIN minimum_collection min
 ON mb.Movie = min.Movie
 JOIN maximum_collection max
 ON mb.Movie = max.Movie;
CITYMOVIECITY_WISE_COLLECTIONCOUNTRYWIDE_COLLECTIONBUDGETMIN_CWCMAX_CWC
MumbaiDangal (2016)1449.212070.370207.031449.21
DelhiDangal (2016)414.062070.370207.031449.21
ChennaiDangal (2016)207.032070.370207.031449.21
MumbaiSanju (2018)411.95588.510058.85411.95
DelhiSanju (2018)117.7588.510058.85411.95
ChennaiSanju (2018)58.85588.510058.85411.95
MumbaiTiger Zinda Hai (2017)390.655821055.8390.6
DelhiTiger Zinda Hai (2017)111.655821055.8390.6
ChennaiTiger Zinda Hai (2017)55.855821055.8390.6
MumbaiBaahubali 2 The Conclusion (2017)1251.6421788.06250178.8061251.642
DelhiBaahubali 2 The Conclusion (2017)357.6121788.06250178.8061251.642
ChennaiBaahubali 2 The Conclusion (2017)178.8061788.06250178.8061251.642
MumbaiKGF Chapter 2 (2022)845.61208100120.8845.6
DelhiKGF Chapter 2 (2022)241.61208100120.8845.6
ChennaiKGF Chapter 2 (2022)120.81208100120.8845.6
MumbaiRRR (2022)7981140550114798
DelhiRRR (2022)2281140550114798
ChennaiRRR (2022)1141140550114798
MumbaiAvengers End Game (2019)13279189702500189713279
DelhiAvengers End Game (2019)3794189702500189713279
ChennaiAvengers End Game (2019)1897189702500189713279

How useful was this post?

Click on a star to rate it!

  • ANCOVA: Analysis of Covariance with python

    ANCOVA is an extension of ANOVA (Analysis of Variance) that combines blocks of regression analysis and ANOVA. Which makes it Analysis of Covariance.

  • Learn Python The Fun Way

    What if we learn topics in a desirable way!! What if we learn to write Python codes from gamers data !!

  • Meet the most efficient and intelligent AI assistant : NotebookLM

    Start using NotebookLM today and embark on a smarter, more efficient learning journey!

  • Break the ice

    This can be a super guide for you to start and excel in your data science career.

  • Manova Quiz

    Solve this quiz for testing Manova Basics

  • Quiz on Group By

    Test your knowledge on pandas groupby with this quiz

  • Visualization Quiz

    Observe the dataset and try to solve the Visualization quiz on it

  • Versions of ANCOVA (Analysis Of Covariance) with python

    To perform ANCOVA (Analysis of Covariance) with a dataset that includes multiple types of variables, you’ll need to ensure your dependent variable is continuous, and you can include categorical variables as factors. Below is an example using the statsmodels library in Python: Mock Dataset Let’s create a dataset with a mix of variable types: Performing…

  • Python Variables

    How useful was this post? Click on a star to rate it! Submit Rating

  • A/B Testing Quiz

    Complete the code by dragging and dropping the correct functions

  • Python Functions

    Python functions are a vital concept in programming which enables you to group and define a collection of instructions. This makes your code more organized, modular, and easier to understand and maintain. Defining a Function: In Python, you can define a function via the def keyword, followed by the function name, any parameters wrapped in parentheses,…

  • Python Indexing: A Guide for Data Science Beginners

    Mastering indexing will significantly boost your data manipulation and analysis skills, a crucial step in your data science journey.

  • Diffusion Models: Making AI Creativity

    Stable Diffusion Models: Where Art and AI Collide Artificial Intelligence meets creativity in the fascinating realm of Stable Diffusion Models. These innovative models take text descriptions and bring them to life in the form of detailed and realistic images. Let’s embark on a journey to understand the magic behind Stable Diffusion in a way that’s…

Instagram
WhatsApp
error: Content is protected !!