This repository contains my practical SQL exercises completed using MySQL Workbench.
The goal of this project is to build a strong foundation in SQL by practicing real queries on well-known sample databases.
- I downloaded and installed MySQL Workbench.
- I imported two popular practice databases into MySQL Workbench:
- Northwind
- World
- I began working directly on these databases to practice different SQL concepts.
I started by practicing fundamental SQL operations on the Northwind database:
SELECT * FROM table- Filtering with
WHERE - Logical operators:
ANDOR=><BETWEEN
- Sorting results with
ORDER BY
πΈ Screenshots β Basic Queries
Example:

I continued by practicing JOIN operations on Northwind tables:
INNER JOINLEFT JOINRIGHT JOIN- Combining multiple tables
- Understanding relationships between entities (Products, Orders, Customers, etc.)
πΈ Screenshots β JOIN Queries
Example:

After Northwind, I practiced on the World database using the skills I learned earlier:
- Basic queries
- Filtering and sorting
- Using conditions and logical operators
- Joining tables to explore relationships
- Exploring country, city, and language data
πΈ Screenshots β World Database Practice
This repository documents my learning process as I strengthen my SQL skills.
It demonstrates my ability to:
- Work with real datasets
- Write clear and correct SQL queries
- Understand relational database structure
- Apply SQL concepts through hands-on practice
- Work with
GROUP BYandHAVING - Learn aggregate functions (
COUNT,SUM,AVG, etc.)
- Practice more complex joins
- Explore subqueries and nested SELECT statements
Thanks for visiting this project! π




