You are on page 1of 13

PROJECT WORK

On
STUDENT DATABASE MANAGEMENT SYSYTEM
Submitted to CMREC (UGC Autonomous)
In Partial Fulfilment of the requirements for the Award of Degree of
BACHELOR OF TECHNOLOGY
IN
COMPUTER SCIENCE AND ENGINEERING
Submitted By
ANIKATE DAHIYA 228R1A05K7

TDS PRANAV 228R1A05N2

SARANG SHAHARE 228R1A05Q7

Under the guidance of

MRS. S. ANITHA
Assistant Professor, Department of CSE

Department of COMPUTER SCIENCE AND ENGINEERING


CMR ENGINEERING COLLEGE
(Accredited by NBA, Approved by AICTE, NEW DELHI, Affiliated to
JNTU, Hyderabad)
Kandlakoyaas, Medchal Road, R.R. Dist. Hyderabad-501 401)
2022-2023
INDEX
INDEX
SL NO DESCRIPTION PAGE NO

1 DECLARATION 04

2 CERTIFICATE 05

3 ACKNOWLEDGEMENT 06
PROJECT 1- STUDENT DATABASE MANAGEMENT
4 SYSTEM
08

5 INTRODUCTION 09

6 IMPLEMENTATION 09

7 SOURCE CODE 09

8 OUTPUT 10

9 CONCLUSION 10

10 HARDWARE AND SOFTWARE REQUIREMENTS 14

11 BIBLIOGRAPHY/REFERENCE 15

2
DECLARATION
This is to certify that the work reported in the present Lead
Experiment entitled “Electricity bill generator and student database
management system” in a record of bonafide work done by OUR
TEAM in the Department of Computer science & Engineering, CMR
Engineering College.
It is based on our study and/or research and that we have
acknowledged all material and sources used in its preparation,
whether they be books, articles, reports, lecture notes, and any other
kind of document, electronic or personal communication.
We also certify that this project has not previously been submitted for
assessment in any academic capacity, and that I have not copied in
part or whole or otherwise plagiarised the work of other persons.
The reports are based on the Lead Experiment work done entirely by
me and not copied from any other source. I submit my Lead
Experiment for further development by any interested students who
share similar interests to improve the Lead Experiment in the future.
The results embodied in this Lead Experiment report have not been
submitted to any other University or Institute for the award of any
degree or diploma to the best of our knowledge and belief.
We confirm that we have identified and declared all possible conflicts
that we may have.

ANIKATE DAHIYA 228R1A05K7


TDS PRANAV 228R1A05N2
SARANG SHAHARE
228R1A05Q7
3
CERTIFICATE
CMR ENGINEERING COLLEGE
(Accredited by NRA.Approved by AICTE NEW DELHI, Affiliated to
JNTU, Hyderabad) Kandlakoya, Medchal Road, Hyderabad-501
401

Department of Computer Science and Engineering

This is to certify that the Lead Experiment entitled Electricity bill


generator and student database management system is a bonafide
work carried out and submitted by ANIKATE DAHIYA 228R1A05K7,
TDS PRANAV 228R1A05N2, SARANG SHAHARE228R1A05Q7.
in partial fulfillment of the requirement for the award of the degree
of BACHELOR OF TECHNOLOGY (CSE) from CMR Engineering College,
under our guidance and supervision.
The results presented in this Lead Experiment have been verified and
are found to be satisfactory & it is successfully completed.

Internal Guide Head of the Department


MRS. S. ANITHA DR. SHEO
KUMAR
Assistant Professor Professor & HOD
Department of CSE, Department of CSE,
4
CMREC, Hyderabad CMREC, Hyderabad

5
ACKNOWLEDGEMENT
First of all, we would like to thank the almighty God for
listening my prayers and giving me strength to complete the
dissertation work.

We would like to express a deep sense of gratitude and


thanks profusely to MRS. S. ANITHA, Assistant Professor,
Department of CSE, CMR Engineering College, our guide and
mentor, without the wise counsel and able guidance, it would have
been impossible to complete the dissertation in this manner.

We would like to express my sincere gratitude to our principal


DR. A. SRINIVASULA REDDY and our HOD DR. SHEO KUMAR
and the College for providing me with facilities required to do my
project and we are also grateful to for cooperation to me for carrying
out this work. We shall be failing in our duty if we don't acknowledge
the support received in order to complete the work.

We must also express my deep regards and thanks to our


parents for supporting and boosting my morale so that we can
overcome my hard times. we also want to thank our senior & our
friends.

We finally pray that almighty fulfils the aspirations of all the


people who have been a part of this journey and those who will be a
part of future journeys.

DATE- 02/01/2024
6
PROJECT REPORT
Topic-

STUDENT DATABASE MANAGEMENT


SYSTEM

Submitted by-
ANIKATE DAHIYA
ROLL NO.- 228R1A05K7

TDS PRANAV
ROLL NO.- 228R1A05N2

SARANG SHAHARE
ROLLNO.228R1A05Q7

Submitted to-
MRS. S. ANITHA
ASSISTANT PROFESSOR
DEPARTMENT OF CSE
CMR ENGINEERING COLLEGE

7
PROJECT 1- Create a student database and compute the result

a. Create a student table with the following details.

Field name Type


student_id integer(4)
student_name varchar(25)
sub1_marks integer(2)
sub2_marks integer(2)
sub3_marks integer(2)
sub4_marks integer(2)
sub5_marks integer(2)
sub6_marks integer(2)

b. Add records into the table for 5 students .

c. Display the description of the fields in the table using desc command.

d. Alter the table and calculate total, perc_marks and result.

Field Name Type


total integer(3)
perc_marks integer(2)
result varchar(10)

e. Compute total and percentage.

f. Compute the result as “pass” and “fail” by checking if the student


has scored more than 35 marks in each subject.

g. List the contents of the table.

8
Title- Student Database Management System using SQL

Introduction:
The Student Database Management System is a software application that helps
in managing student-related information efficiently. This project involves
creating a student table, adding records for 5 students, altering the table to
calculate total marks, percentage marks, and result, and finally listing the
contents of the table. The project uses SQL (Structured Query Language) to
perform these tasks.

Objective:
The objective of this project is to create a database table for students, insert
records for 5 students, calculate their total marks and percentage, and determine
their result (pass or fail) based on their subject-wise marks.

Implementation:
Below are the steps involved in implementing the Student Database
Management System using SQL:

a. Command to create a table


create table student (student_id integer(4), student_name
varchar(25),sub1_marks integer(2),sub2_marks integer(2),sub3_marks
integer(2),sub4_marks integer(2), sub5_marks integer (2), sub6_marks
integer(2));

b. Command to add records into the table


insert into student values(111,' AAA
',67,82,86,90,56,78); insert into student values(112,' BBB
',56,69,78,25,30,60); insert into student values(113,' CCC
',44,56,36,57,68,50); insert into student values(114,'
DDD ',80,88,90,94,95,97); insert into student
values(115,' EEE ',32,45,33,56,67,49);

c. Command to view the structure of the table


desc student;

d. Command to alter the table.


alter table student add(total integer(3),perc_marks integer(2), result
varchar(10));

9
e. Command to calculate total
update student set total = sub1_marks + sub2_marks + sub3_marks +
sub4_marks + sub5_marks + sub6_marks;

f. Command to calculate percentage.


update student set perc_marks = total/6.0;

g. Command to calculate result as pass


update student set result = 'pass' where sub1_marks>=35 and sub2_marks>=35
and sub3_marks>=35 and sub4_marks>=35 and sub5_marks>=35 and
sub6_marks>=35;

h. Command to calculate result as fail


update student set result = 'fail' where sub1_marks<35 or sub2_marks<35 or
sub3_marks<35 or sub4_marks<35 or sub5_marks<35 or sub6_marks<35;

i. Command to view the contents of the table.


select * from student;

OUTPUT

Conclusion:
The Student Database Management System project has been successfully
implemented using SQL. The student table has been created, records have been
inserted, and fields for total marks, percentage marks, and result have been
added and populated for each student. The system is now capable of efficiently
managing student data and providing useful insights regarding their
performance

1
0
11
11
HARDWARE AND SOFTWARE REQUIREMENTS

I. OPERATING SYSTEM : WINDOWS 7 AND ABOVE

II. PROCESSOR : PENTIUM(ANY) OR AMD

ATHALON (3800+- 4200+

DUAL CORE)

III. MOTHERBOARD : 1.845 OR 915,995 FOR PENTIUM

0R MSI

K9MM-V VIA K8M800+8237R PLUS

CHIPSET FOR AMD ATHALON

IV. RAM : 512MB+

V. Hard disk : SATA 40 GB OR ABOVE

VI. CD/DVD r/w multi drive combo: (If back up required)

VII. FLOPPY DRIVE 1.44 MB : (If Backup required)

VIII. MONITOR 14.1 or 15 -17 inch / Projector

IX. Key board and mouse

X. Printer : (for Hard copy)

SOFTWARE REQUIREMENTS:

I. Windows OS
II. MYSQL

11
12
BIBLIOGRAPHY/ REFERENCES

1. GOOGLE
2. WIKIPEDIA
3. YOUTUBE
4. CHATGPT
5. GEEKS FOR GEEKS
6. PROGRAMIZ

11
13

You might also like