The Student Management Application is a software system designed to efficiently manage and organize student-related information within an educational institution. It provides a user-friendly interface for administrators, teachers, and staff to perform various tasks related to student records and enrollment.
Column | Data Type | Constraints |
---|---|---|
id | int | NOT NULL, PRIMARY KEY, AUTO_INCREMENT |
name | varchar(100) | NOT NULL |
varchar(100) | NOT NULL | |
mobile_no | varchar(10) | NOT NULL |
password | varchar(100) | NOT NULL |
gender | char(1) | NOT NULL |
dob | date | NOT NULL |
created_date | timestamp | NOT NULL, DEFAULT CURRENT_TIMESTAMP |
email (unique) | ||
gender (check) | IN ('M', 'F') |
Column | Data Type | Constraints |
---|---|---|
id | int | PRIMARY KEY, AUTO_INCREMENT |
student_id | int | NOT NULL, FOREIGN KEY (students.id) |
class | int | NOT NULL |
status | varchar(20) | NOT NULL |
class (check) | BETWEEN 1 AND 12 | |
status (check) | IN ('ACTIVE', 'INACTIVE') |