Instantly share code, notes, and snippets.

@JonathanCass

JonathanCass / movies.sql

  • Download ZIP
  • Star ( 0 ) 0 You must be signed in to star a gist
  • Fork ( 0 ) 0 You must be signed in to fork a gist
  • Embed Embed this gist in your website.
  • Share Copy sharable link for this gist.
  • Clone via HTTPS Clone using the web URL.
  • Learn more about clone URLs
  • Save JonathanCass/7c2f530455e806167147fe7be04c9709 to your computer and use it in GitHub Desktop.
select * from movies;
select title, movieid
from movies
limit 10;
select title, movieid
from movies
where movieid = 485;
select movieid
from movies
where title ='Made in America (1993)';
select title
from movies
order by title asc
limit 10;
select title
from movies
where title like '%2002%';
select title
from movies
where title like '%Godfather, The%';
select title, genres
from movies
where genres like '%Comedy%';
select title, genres
from movies
where genres like '%Comedy%' and title like '%(2000)%';
select title, genres
from movies
where lower(title) like '%death%' and genres like '%Comedy%';
select title
from movies
where (title like '%(2001)%' or title like '%(2002)%') and lower(title) like '%super%';
select m.title, r.rating
from movies m
left join ratings r on m.movieid = r.movieid
where m.title like '%Godfather, The%';
select m.title, r.rating, r.timestamp
from movies m
left join ratings r on m.movieid = r.movieid
where m.title like '%Godfather, The%'
order by r.timestamp desc;
select m.title, l.imdbid
from movies m
left join links l on m.movieid = l.movieid
where m.title like '%2005%' and m.genres like '%Comedy%';
select m.title, r.rating
from movies m
left join ratings r on m.movieid = r.movieid
where r.movieid IS NULL;
SELECT movies.title, movies.genres
FROM movies
JOIN movie_genre
ON movie_genre.movieid = movies.movieid
JOIN genre
ON genre.id = movie_genre.genre_id
WHERE genre.genres ='Fantasy';
select concat('http://www.imdb.com/title/tt', links.imdbid) as link, movies.title
from links
join movies on links.movieid = movies.movieid;
select concat('https://www.themoviedb.org/movie/', links.tmdbid) as link, movies.title
from links
join movies on links.movieid = movies.movieid;

Vasundhara Kadekodi Portfolio

Marketing and retail-analytics.

rsvp movies sql assignment github

πŸ’°πŸ›οΈπŸ“Š Reduce costs and increase revenue with OList E-commerce Inventory Management! πŸ“ˆπŸ” Using Pareto analysis and market basket analysis, we identify top-performing products and customer purchase behavior to optimize inventory and prioritize profitable categories. πŸ“‰πŸ’‘ Our recommendations include focusing on top-performing products, creating product bundles, and removing slow-moving items from categories. πŸ’ͺ

  • View Project

Resume Screening

rsvp movies sql assignment github

πŸ”πŸ“„ Traditional manual resume screening is time-consuming and prone to biases. But, πŸ€– machine learning models can automate the process, leading to a more efficient and objective screening process. In this project, we preprocess the data to extract relevant features, analyze it using various ML techniques, and build models to predict the category of each resume based on job requirements. The models are evaluated using performance metrics, and the insights are used to improve the screening process. πŸ“ˆπŸ’‘πŸ‘¨β€πŸ’»

Bike Sharing A Machine Learning Model

rsvp movies sql assignment github

Multiple linear regression πŸ“ˆ was performed on the Boombikes bike rental dataset to find the number of rentals issued 🚴 based on various independent values such as temperature 🌑️, weather 🌀️, and holidays πŸ–οΈ. The R-squared value suggests a good model, with temperature 🌑️, light rain β˜”, and year πŸ“… being the top predictor variables. Recommendations include increasing bike availability 🚲 and promotions πŸŽ‰ during the summer months.

Lead Score A Machine Learning Model

rsvp movies sql assignment github

πŸ”πŸ“ˆ The Lead Score Analysis for X Education πŸŽ“ helps to increase enrollment by identifying the most influential factors in converting potential customers into registered students. By analyzing data on site visits, time spent on the site, lead origin, notable activity, and more, the analysis provides actionable insights that can be used to optimize the website and increase conversions. Recommendations include improving the UI/UX, offering discounts πŸ’°, and prioritizing the key variables identified in the analysis.

Instagram Analytics in SQL

rsvp movies sql assignment github

πŸ“ˆπŸ’» In this project, I worked with the Instagram product team to provide insights on user behavior and engagement through SQL fundamentals. πŸ”πŸ‘₯ I analyzed user data to help the marketing team with campaigns, such as identifying loyal and inactive users and suggesting commonly used hashtags. πŸ’‘πŸ“Š Additionally, I provided investor metrics on user engagement and identified fake accounts on the platform.

RSVP Movie Case-Study in SQL

rsvp movies sql assignment github

πŸŽ₯🌍 In this project, I analyzed data from RSVP Movies, an Indian film production company, to provide meaningful insights for their upcoming global movie release in 2022. By analyzing data on past movie releases, I was able to make recommendations and help the company plan their project analytically. This project gave me valuable experience in data analysis and the opportunity to contribute to the success of a major film production company.

IPL Match Visualization

rsvp movies sql assignment github

πŸ“ŠπŸ It is an interactive Tableau dashboard to showcase IPL statistics from 2008 to 2017. used two datasets, 'matches.csv' and 'deliveries.csv', to create visualizations for match, player, and team statistics. The dashboard included subcategories such as toss outcome vs match outcome, biggest wins, highest totals, orange and purple cap contenders, and team performance. The end goal is to provide important insights and statistics for an infographic that will be used in a newsletter. πŸ“ˆπŸ‘¨β€πŸ’»

Road Accident Dashboard

rsvp movies sql assignment github

πŸš—πŸ“Š The UK road accident dashboard, built with Tableau, provides users with a detailed overview of road accidents in the country. The interactive visualizations enable users to explore the data based on accident severity, region, and road type, as well as track patterns by year. πŸ’»πŸ”

Covid-19 Data Visualization

rsvp movies sql assignment github

πŸŒŽπŸ“Š An interactive Tableau dashboard for COVID-19 cases worldwide with visualizations and insights on death and infection rates. It also displays data based on geographical areas.

Stroke Prediction

rsvp movies sql assignment github

πŸ§ πŸ“ˆ This project builds a machine learning model to predict stroke likelihood based on risk factors like age, hypertension, and smoking status. We used Python 🐍, Scikit-learn, and several algorithms to build the model and evaluated its accuracy using performance metrics. Our model can help healthcare professionals identify high-risk patients and prevent strokes. πŸ’ͺπŸ₯

EDA on Bank Loan Dataset

rsvp movies sql assignment github

πŸ’ΌπŸ“ˆ A consumer finance company wants to identify loan default patterns through EDA to make informed decisions and reduce financial risks. πŸ”πŸ“Š We will analyze data and identify strong indicators of default to understand driving factors and utilize this knowledge for risk assessment. πŸ’»πŸ€” Research on risk analytics will help us make data-driven decisions to ensure applicants capable of repaying the loan are not rejected.

(+91) 9380581879

[email protected]

IMAGES

  1. GitHub

    rsvp movies sql assignment github

  2. GitHub

    rsvp movies sql assignment github

  3. GitHub

    rsvp movies sql assignment github

  4. RSVP Movies SQL Assignment

    rsvp movies sql assignment github

  5. GitHub

    rsvp movies sql assignment github

  6. GitHub

    rsvp movies sql assignment github

VIDEO

  1. [undaw] sequencer experiments

  2. Treasure In The Belly Of A Pig

  3. Excel Chapter 4 Simulation Exam_ ecel_chapter_4_simultion_exam| complete solution100%

  4. SQL (Structured Query Language) Class13

  5. SQL Interview Questions and Answers Series

  6. Building an SQL Practice Playground with Frappe Framework, SQLite and FrappeUI

COMMENTS

  1. VISHAKHA-stack/RSVP-Movies-SQL-Assignment

    RSVP-Movies-SQL-Assignment. RSVP Movies is an Indian film production company which has produced many super-hit movies. They have usually released movies for the Indian audience but for their next project, they are planning to release a movie for the global audience in 2022. The production company wants to plan their every move analytically ...

  2. GitHub

    You have been provided with the data of the movies that have been released in the past three years. You must analyze the data set and draw meaningful insights that can help them start their new project. You are a data analyst and an SQL expert. You must use SQL to analyze the given data and give recommendations to RSVP Movies based on the insights.

  3. SAMBIIT/RSVP-Movies-SQL-Assignment

    RSVP-Movies-SQL-Assignment. RSVP Movies is an Indian film production company which has produced many super-hit movies. They have usually released movies for the Indian audience but for their next project, they are planning to release a movie for the global audience in 2022. We have been provided with the data of the movies that has been ...

  4. SQL Case Study: RSVP Movie Data Analytics

    Something went wrong and this page crashed! If the issue persists, it's likely a problem on our side. Unexpected token < in JSON at position 4. keyboard_arrow_up. content_copy. SyntaxError: Unexpected token < in JSON at position 4. Refresh. Explore and run machine learning code with Kaggle Notebooks | Using data from multiple data sources.

  5. PDF SQL-RSVP MOVIES CASE STUDY

    SQL-RSVP MOVIES CASE STUDY EXECUTIVE SUMMARY & RECOMMENDATIONS: Based on the insights listed in the IMDB dataset, we can make the following conclusions: In the 'Drama' genre, a total of 1078 films were released in 2019. As a result, RSVP Movies' next project should be in the 'Drama' genre.

  6. GitHub

    So we tried to find out the top director and the top production house who will going to direct the movie and the top 3 actor. As this movie is released by India so top three Indian Actor and Actress also required. Suggestion to RSVP: 1) James Mangold can be hired as the director for RSVP's next project. 2) Mammootty & Vijay Sethupathi Should ...

  7. IMDB Movie Dataset Analysis

    Domain: Movies Tech Stack: SQLObjective: RSVP Movies plans to produce next movie based on data of highest rated movies released in the past three yearsKey Ac...

  8. Movie SQL assignment Β· GitHub

    Download ZIP. Movie SQL assignment. Raw. movies.sql. This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode characters.

  9. RSVP-SQL-Assignment/IMDB+solution_(1).sql at main

    Provide Insightful data of movies for their New Project - Githubvijayabadam/RSVP-SQL-Assignment

  10. RSVP-Movies-SQL-Assignment/IMDB+question+answers.sql at main

    Since RSVP Movies is based out of Mumbai, India also wants to woo its local audience. RSVP Movies also wants to hire a few Indian actors for its upcoming project to give a regional feel. Let's find who these actors could be.*/

  11. GitHub Pages

    RSVP Movie Case-Study in SQL. πŸŽ₯🌍 In this project, I analyzed data from RSVP Movies, an Indian film production company, to provide meaningful insights for their upcoming global movie release in 2022. By analyzing data on past movie releases, I was able to make recommendations and help the company plan their project analytically.

  12. RSVP Movies Case Study

    πŸ“½πŸ“ RSVP Movies Case Study - MYSQL πŸ“πŸ“½ Kaggle uses cookies from Google to deliver and enhance the quality of its services and to analyze traffic. Learn more.

  13. SQL_RSVP_MOVIE_CASE_STUDY

    Explore and run machine learning code with Kaggle Notebooks | Using data from RSVP Movies. Kaggle uses cookies from Google to deliver and enhance the quality of its services and to analyze traffic. Learn more. OK, Got it. Something went wrong and this page crashed!

  14. RSVP-Movies-Case-Study/IMDB+question.sql at main

    RSVP Movies plans a global release in 2022 and seeks data-driven insights. My analysis of their past three years' movies suggests focusing on popular genres like action and drama, casting well-known actors, timing releases during peak seasons, leveraging digital platforms, and implementing global marketing strategies.

  15. kavitha1409/SQL-RSVP-Movies: RSVP Movies SQL Assignment

    RSVP Movies SQL Assignment. Contribute to kavitha1409/SQL-RSVP-Movies development by creating an account on GitHub.

  16. ANKIT21111/RSVP-MOVIES-DATA-ANALYSIS

    As a data analysis process with SQL knowledge, we 've analysed the past three years'(2017,2018,2019) worth of movie dataset for RSVP Movies, an Indian film production company known for its super-hit movies. - ANKIT21111/RSVP-MOVIES-DATA-ANALYSIS.

  17. RSVP Movies Assignment

    RSVP Movies assignment based upon IMDb dataset. RSVP Movies assignment based upon IMDb dataset. Kaggle uses cookies from Google to deliver and enhance the quality of its services and to analyze traffic. Learn more. OK, Got it. Something went wrong and this page crashed! If the issue persists, it's likely a problem on our side. ...

  18. RSVP Movies

    Analyzing IMDB dataset for RSVP movies case study. Analyzing IMDB dataset for RSVP movies case study. Kaggle uses cookies from Google to deliver and enhance the quality of its services and to analyze traffic. Learn more. OK, Got it. Something went wrong and this page crashed! If the issue persists, it's likely a problem on our side. ...

  19. PDF SQL-RSVP-Movies/Kavitha SQL Assignment Insights.pdf at main ...

    RSVP Movies SQL Assignment. Contribute to kavitha1409/SQL-RSVP-Movies development by creating an account on GitHub.

  20. Prasadbillade622/RSVP-Movies-Using-SQL

    Find and fix vulnerabilities Codespaces. Instant dev environments

  21. GitHub

    Find and fix vulnerabilities Codespaces. Instant dev environments

  22. Releases Β· Githubvijayabadam/RSVP-SQL-Assignment Β· GitHub

    Find and fix vulnerabilities Codespaces. Instant dev environments

  23. PiyushKumar495/RSVP-Movies-Case-Study

    RSVP Movies plans a global release in 2022 and seeks data-driven insights. My analysis of their past three years' movies suggests focusing on popular genres like action and drama, casting well-known actors, timing releases during peak seasons, leveraging digital platforms, and implementing global marketing strategies. ...