Skip to content

Business-focused SQL project analyzing used car sales data to extract trends in fuel type, year-wise availability, and overall volume. Demonstrates practical skills in aggregation, filtering, and reporting insights that support real-world decision-making.

Notifications You must be signed in to change notification settings

Satyam-Dataanalyst/SQL-projects

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 

History

3 Commits
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation

πŸš— Car Sales Data Analysis with SQL

This project contains SQL queries for exploring trends in the used car market, such as vehicle availability, fuel-type analysis, and year-over-year insights. Ideal for demonstrating proficiency in SQL-based data analysis and business understanding.

πŸ“Œ Dataset Assumption

The database includes a table named car_dekho with fields like:

  • year
  • fuel
  • Additional assumed columns: car_name, model, etc.

πŸ” Key Analyses

  • Total car listings over time
  • Breakdown by fuel type (Petrol, Diesel, CNG)
  • Identifying high-availability years
  • Filtering by custom time frames (e.g., 2015–2023)

πŸ›  Tools Used

  • MySQL (compatible with other dialects)
  • SQL queries for aggregation, filtering, and grouping

πŸš€ How to Use

  1. Import your dataset and create the car_dekho table.
  2. Run car_sales_analysis.sql in your SQL environment.
  3. Modify queries as needed to adapt to your dataset structure.

πŸ’‘ Sample Use Case

β€œFind the total number of petrol cars listed in 2020.”

SELECT COUNT(*) FROM car_dekho WHERE year = 2020 AND fuel = 'petrol';

About

Business-focused SQL project analyzing used car sales data to extract trends in fuel type, year-wise availability, and overall volume. Demonstrates practical skills in aggregation, filtering, and reporting insights that support real-world decision-making.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published