You signed in with another tab or window.Reload to refresh your session.You signed out in another tab or window.Reload to refresh your session.You switched accounts on another tab or window.Reload to refresh your session.Dismiss alert
A collection of mini MySQL projects focusing on database design, SQL queries, and real-world use cases. Great for learning, practice, and improving database skills.
This project is aStudent Management System built using MySQL. It includes database tables for managing student records, courses, enrollment, attendance, and marks.
Features
Store student details (name, age, class, contact).
Manage courses and instructors.
Track student enrollments in courses.
Record attendance status (Present/Absent).
Store student marks and grades.
Database Schema
The database consists of the following tables:
Students: Stores student details.
Courses: Contains course details and instructor names.
Enrollment: Tracks which students are enrolled in which courses.
Attendance: Records student attendance for courses.
Marks: Stores student grades and marks.
How to Use
Import thestudent_management.sql file into MySQL.
Use SQL queries to insert, update, or fetch data.
Modify and expand as needed for your projects.
Sample Queries
To fetch all students:
SELECT*FROM Students;
To enroll a student in a course:
INSERT INTO Enrollment (student_id, course_id, enrollment_date)VALUES (1,2,'2025-03-29');
A collection of mini MySQL projects focusing on database design, SQL queries, and real-world use cases. Great for learning, practice, and improving database skills.