DBMS Microproject NEW-1
DBMS Microproject NEW-1
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.
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.
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#
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#
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