0% found this document useful (0 votes)
205 views8 pages

DBMS Microproject NEW-1

This document is a report on a micro project to create a student database management system using MySQL. Key benefits of the system include improved management of student records, automatic database management, and eliminating physical records. The project involved selecting a topic, collecting information, discussing with teachers, creating the report using resources like the internet and laptop. Skills developed include understanding how a database management system works and making data entry, editing, deletion and searching easier for the college. The project has applications in adding, editing and deleting student data as well as checking records for the university. Various tables were created to store student and family details and queries were used to insert, update, delete and search records.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
205 views8 pages

DBMS Microproject NEW-1

This document is a report on a micro project to create a student database management system using MySQL. Key benefits of the system include improved management of student records, automatic database management, and eliminating physical records. The project involved selecting a topic, collecting information, discussing with teachers, creating the report using resources like the internet and laptop. Skills developed include understanding how a database management system works and making data entry, editing, deletion and searching easier for the college. The project has applications in adding, editing and deleting student data as well as checking records for the university. Various tables were created to store student and family details and queries were used to insert, update, delete and search records.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 8

Amrutvahini Sheti And Shikshan Vikas Sanstha

Amrutvahini Polytechnic Sangamner

CERTIFICATE
This is to certify that
16 Sanket Bharati
10 Sarthak Chaudhari
32 Aniket Suryavanshi
07 Chaitali Sonawane
50 Maya Tormal
Has satisfactorily. Completed micro project. Report on title

“Application using My SQL Dtabase for easy access for Student Database Manegment
System”
As prescribed by MSBTE As part of syllabus for the particle fulfillment in diploma in
computer technology for academic year 2021 – 2022.
Prof. Pawar Mam prof. Kale G. B.
(Guide) (H.O.D.)
Session: 2021-2022
Branch: CM3I
Sub : Database manegment system
Sub Teacher: Ms. Pawar mam
Report of Micro Project
Student Database Manegment System

1.0 Rationale:
Key benefits of implementing The Student Database Mannegment System is we can add the
database of the student as well as we can edit,updet,and delete the database also.We can
also find the database of the specific student with the id of the student,that saves time and
human efforts both.

2.0 Aims /Benefits of micro project:


1) Improve our Student database manegment.
2) Perfect manegment of the students in the collage/university.
3) Managing our database automaticaly.
4) No need to take phisical record of the students.
5) Drop down the risk of miss records and worng information of students.

3.0 Course Outcomes Achieved:


CI304.1 Memorise1 database concept normalization concepts to normalize given
database up to 3NF.
CI304.2 Use DDL and DML Statments to define table structure and to
maiupulate values .
CI304.3 Implement concept of database triggers on database & execute
simple procedure & functions.
CI304.4 Use control stetmentin PL/SQL code for given database.
CI304.5 Use DCL command to provide security & confidentiality on database.
4.0 Literature review:
A student record/data contains information directly related to a student, which means that
the record is personally identifiable. Personal identifiers that relate a record to a student
include student name, student ID, student address, parent/family member names, and a list
of personal characteristics. Student records could be maintained in

5.0 Actual Methodology followed:


1) Select the topic.
2) Collect the information with relating.
3) Discussion with teachers.
4) With the help of internet, teachers and laptop make a report on this topic.
5) Clear the submission process.

6.0 Actual Resources Required:

Sr no Name of Specifications Quantity Marks


resources
1) Computer Intel (R) core 1 -
i3-4 GB RAM
2) Development Dosbox Turbo 1 -
tools C++

7.0 Output of the project:


1] We all able to understand the working of Students Database Manegment System using
My SQL Database.
2] We all understanding how the Database Manegment System Works

8.0 Skill developed:


The College can able to add the database , delet the database and can be edit the database.
By using the student database manegment system,collage have the datbase of the all
students by in the sorted order by the database type of the students. By implimenting
This system the student manegment work of the college makes easier.From yhese project
we learned the database manegment project and we are able to creat the database tables.
9.0 Application of this Project:

1) Using Student database manegment system,the school/collage can Add,Edit and can
able to delet the data entry of the specific student.
2) It makes easy to check the datatabase of the student to the university.

The Database table and Query :

#TO CREAT TABLE OF STUDENT DATABASE MANEGMENT


SYSTEM#
CREATE TABLE stud (
id INT( 2 ) NOT NULL ,
name VARCHAR( 50 ) NOT NULL ,
address VARCHAR( 100 ) NOT NULL ,
mobile VARCHAR( 10 ) NOT NULL ,
chars VARCHAR( 100 ) NOT NULL
);

SELECT * FROM stud;
.....….. BLANK………….
INSERT INTO stud (id,name,address,mobile,chars) VALUES
('1','Ram','Sangamner','9423785082','Hardwork,Healthy,Positive');
SELECT * FROM stud;
#To insert the Database of the student#

INSERT INTO stud (id,name,address,mobile,chars) VALUES


('2','Sham','Pune','7796100223','Cleaver');
INSERT INTO stud (id,name,address,mobile,chars) VALUES
('3','Omkar','Nasik','7796100220','Good');
INSERT INTO stud VALUES
('4','Shivam','Nagar','7796100222','Sharp');
INSERT INTO stud VALUES
('5','Sakshi','Nagar','7796100221','Honest');
INSERT INTO stud VALUES
('6','Sanket','Nasik','7796100225','Honest');
SELECT * FROM stud;
#To insert database of anouther students#

DELETE FROM stud WHERE address = 'Nasik'
SELECT * FROM stud;
#To delet the students those address is nashik#

UPDATE stud SET address = 'Mumbai' WHERE name = 'Shivam';
SELECT * FROM stud;
#To updet the database of the student#
CREATE TABLE family (
id INT( 2 ) NOT NULL ,
member VARCHAR( 50 ) NOT NULL
)  ;
#To creat the table for family of the students#

INSERT INTO family (id, member) VALUES ('5', 'Suresh'), ('5',


'Vaishali');
INSERT INTO family (id, member) VALUES ('4', 'Sanjay');
INSERT INTO family (id, member) VALUES ('4', 'Ranjana');
INSERT INTO family (id, member) VALUES ('2', 'Krishna');
INSERT INTO family (id, member) VALUES ('5', 'Tai');
INSERT INTO family (id, member) VALUES ('4', 'Appa');

SELECT * FROM family;
#To add the family members of students#
TO GET ALL FAMILLY MEMBER OF SHIVAM, WE CAN WRITE FOLLLOWING
QUERY
SELECT * FROM family WHERE id =4
#To search the database of specific character or
student#

SELECT *
FROM stud, family
WHERE stud.id = family.id
AND stud.id =4 ;
#To search the student by its specific database#

Thank You

You might also like