Student_Database_Management_Project_Updated
Student_Database_Management_Project_Updated
Objective:
To create a database management system that stores and manages student records, including
personal details,
Database Design:
1. Students Table
|--------------|-------------|------------------------|
| DOB | DATE | |
| Address | VARCHAR(255)| |
SQL Queries:
1. Create Students Table
DOB DATE,
Address VARCHAR(255),
);
2. Insert Records
VALUES (1, 'John Doe', '2005-06-15', 'M', '123 Main St', '9876543210');
4. Attendance Summary
FROM Attendance
GROUP BY Students.Name;
Sample Output:
1. Students Table Output:
+------------+----------+------------+--------+---------------+------------+
+------------+----------+------------+--------+---------------+------------+
+------------+----------+------------+--------+---------------+------------+
2. Attendance Summary:
+----------+----------------+---------+
+----------+----------------+---------+
| John Doe | 10 |8 |
+----------+----------------+---------+
Conclusion:
The Student Database Management System effectively manages student data, including their
personal details, academic performance, and attendance. This project demonstrates the
Objective:
To create a database management system that stores and manages student records, including
personal details,
Database Design:
1. Students Table
|--------------|-------------|------------------------|
| DOB | DATE | |
| Address | VARCHAR(255)| |
SQL Queries: