Student Management
System
Presented by:
Md. Anowar Hossen (213002189)
Md. Asaduzzaman (213002257)
Presented To:
Mahmuda Rahman
Lecturer, Dept. of CSE
Green University of Bangladesh
“Content :
• Introduction
• Module
• Implementation
Introduction:
3
 Basic Sql: Structure Query Language(SQL) is a database query language
used for storing and managing data in Relational DBMS
 Project Introduction: This project on "Student Management System" is useful
for easy user interface. The system utilizes the powerful database
management, data retrieval and data manipulation. This project provides
more ease for managing the data than manually maintaining in the
documents. The project is useful for saving valuable time and reduces the
huge paper work.
Module
4
 Student Management System is software which is helpful
for students as well as the school authorities. In the
current system all the activities are done manually. It is
very time consuming and costly. Our Student
Management System deals with the various activities
related to the students.
There are mainly 3 modules in this software
 Administrator Module
 Faculty Module
 Student Module.
Implementation
5
CREATE TABLE table_name (
column datatype
);
INSERT INTO table_name (column...)
VALUES (value ...);
ALTER TABLE table_name
ADD PRIMARY KEY (column),
ADD KEY column1 (column1),
ADD KEY column2 (Column2);
ALTER TABLE table_name
ADD CONSTRAINT `constraintName` FOREIGN
KEY (`column`) REFERENCES table_name
(column),
Thank you

database-lab.pptx

  • 1.
    Student Management System Presented by: Md.Anowar Hossen (213002189) Md. Asaduzzaman (213002257) Presented To: Mahmuda Rahman Lecturer, Dept. of CSE Green University of Bangladesh
  • 2.
    “Content : • Introduction •Module • Implementation
  • 3.
    Introduction: 3  Basic Sql:Structure Query Language(SQL) is a database query language used for storing and managing data in Relational DBMS  Project Introduction: This project on "Student Management System" is useful for easy user interface. The system utilizes the powerful database management, data retrieval and data manipulation. This project provides more ease for managing the data than manually maintaining in the documents. The project is useful for saving valuable time and reduces the huge paper work.
  • 4.
    Module 4  Student ManagementSystem is software which is helpful for students as well as the school authorities. In the current system all the activities are done manually. It is very time consuming and costly. Our Student Management System deals with the various activities related to the students. There are mainly 3 modules in this software  Administrator Module  Faculty Module  Student Module.
  • 5.
    Implementation 5 CREATE TABLE table_name( column datatype ); INSERT INTO table_name (column...) VALUES (value ...); ALTER TABLE table_name ADD PRIMARY KEY (column), ADD KEY column1 (column1), ADD KEY column2 (Column2); ALTER TABLE table_name ADD CONSTRAINT `constraintName` FOREIGN KEY (`column`) REFERENCES table_name (column),
  • 6.