π College Management Database System π Project Overview
This project is a SQL-based College Management Database System designed to demonstrate core SQL concepts. It includes database creation, table design, sample data insertion, and execution of multiple queries covering:
Joins & Subqueries
Grouping, Filtering & Aggregation
Indexing & Normalization
The project is written in MySQL/SQL standard and can be easily executed on any SQL environment.# SQL-Mini-Project
ποΈ Files Included
CLDC(L1).md β Project documentation with SQL queries and explanations.
College_Management.sql β (Recommended to add) Executable SQL file with schema, sample data, and queries.
README.md β Project description (this file).
π οΈ Database Schema
The project contains the following tables:
Students β Stores student details (ID, name, age, gender, city).
Departments β Stores department info (ID, name).
π Features / Tasks Covered
β Create database and tables β Insert sample records β Perform SELECT, JOIN, WHERE, LIKE, IN, EXISTS queries β Use GROUP BY, HAVING, ORDER BY, DISTINCT β Apply aggregate functions (COUNT, AVG, MAX, MIN) β Write subqueries and nested queries β Implement normalization (3NF) β Create index for optimization β Real-world queries like top scorers, students by city, etc.
Courses β Stores courses offered under each department.
Enrollments β Stores student course enrollments and marks.