0% found this document useful (0 votes)
32 views

DBMS

Micro project for dms solutions for students record management

Uploaded by

vaibhavmodhave24
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
32 views

DBMS

Micro project for dms solutions for students record management

Uploaded by

vaibhavmodhave24
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 16

MAHARASHTRA STATE BOARD OF TECHNICAL EDUCATION

D.Y.PATIL POLYTECHNIC(0996)

MICRO PROJECT
Academic Year : 2024-25
TOPIC OF PROJECT :-

“APPOINTMENT MANAGEMENT SYSTEM”

Course: Computer Engineering Course code: (CO-3-K ) Subject: Data


Base management system Subject code: (313302)

Sr. No Name of group Roll Enrollment No Seat No


members No

01 Rushikesh Thombre 113 23212350352


02 Sachin R. Tidke 114 23212350301
03 Hiten R. Toke 115 23212350350

Prof. Pratik bhagat Prof.S.Himanshi Prof.S.V. Awachar


Subject Teacher Head of the Department Principal

Seal of
institute
ACKNOWLEDGEMENT

It is a matter of great pleasure by getting the opportunity of


highlighting. A fraction of knowledge, I acquired during our technical
education through this project. This would not have been possible
without the guidance and help of many people. This is the only page
where we have opportunity of expressing our emotions and
gratitude from the core of our heart to them. This project not have
been success without enlightened ideas, timely suggestions and
interest of our most respected guide "Prof. Pratik bhagat" without
her best guidance this would have been an impossible task to
complete. I would like to thank "Prof.S.Himanshi" Head of our
department for providing necessary facility using the period of
working on this project work.
I would also like to thank our Principal " " who encourage us and
created healthy environment for all of us to learn in best possible
way. Finally I would pay my respect and love to my parents and all
other family members as we as friends for their love and
encouragement throughout my career.

Student Names
1. Rushikesh S. Thombre
2.Sachin R. Tidke
3.Hiten R. Toke
Index

Sr.No Title Page No.

1 Entity Relational Diagram 01


2 DBMS Program Code 02
3 Output 06
4 Weekly Work / Progress Report 10
5 Evaluation Sheet 11
MAHARASHTRA STATE BOARD OF TECHNICAL EDUCATION

Certificate
This is to certify that Mr.Rushikesh S. Thombre Roll No.113 of Third Semester
Diploma in Computer Engineering of Institute, D.Y. Patil Polytechnic
Instt.Code:0996) has completed the Micro-Project in Database
Management System(313302) for the academic year 2024-25 as prescribed
in the MSBTE curricuium of K Schem.

Place: Ambi Enrollment No: 23212350352

Date: ……………………… Exam Seat No:

Subject Teacher Head of the Department Principal

Seal of
institute
MAHARASHTRA STATE BOARD OF TECHNICAL EDUCATION

Certificate
This is to certify that Mr. Sachin R. Tidke Roll No.114 of Third Semester
Diploma in Computer Engineering of Institute, D.Y. Patil Polytechnic
Instt.Code:0996) has completed the Micro-Project in Database Management
System (313302) for the academic year 2024-25 as prescribed in the MSBTE
curricuium of K Schem.

Place: Ambi Enrollment No: 23212350301

Date: ……………………… Exam Seat No:

Subject Teacher Head of the Department Principal

Seal of
institute
MAHARASHTRA STATE BOARD OF TECHNICAL EDUCATION

Certificate
This is to certify that Mr. Hiten R. Toke Roll No.115 of Third Semester
Diploma in Computer Engineering of Institute, D.Y. Patil Polytechnic
Instt.Code:0996) has completed the Micro-Project in Database Management
System (313302) for the academic year 2024-25 as prescribed in the MSBTE
curricuium of K Schem.

Place: Ambi Enrollment No: 23212350350

Date: ……………………… Exam Seat No:

Subject Teacher Head of the Department Principal

Seal of
institute
ER-Diagram:
• Database Management System Program
Code

CREATE DATABASE IF NOT EXISTS Appointments4;


USE Appointments4;

CREATE TABLE User (


user_id INT PRIMARY KEY,
name VARCHAR(255),
email VARCHAR(255),
phone_no VARCHAR(15),
address VARCHAR(255),
gender ENUM('Male', 'Female', 'Other')
);

INSERT INTO User (user_id, name, email, phone_no, address, gender) VALUES
(5, 'Sachin Tidke', 'sachin.tidke@example.com', '1234567890', '123 Main St, City', 'Male'),
(6, 'Suyash Gavate', 'suyash.gavate@example.com', '2345678901', '456 Elm St, City', 'Male'),
(7, 'Ganesh Bhadake', 'ganesh.bhadake@example.com', '3456789012', '789 Pine St, City',
‘ ‘Male'),
(8, 'Sarthak Shinde', 'sarthak.shinde@example.com', '4567890123', '321 Oak St, City', 'Male'),
(9, 'Rohan Bhosale', 'rohan.bhosale@example.com', '5678901234', '654 Cedar St, City', 'Male');

SELECT * FROM User;


CREATE TABLE Appointments (
AppointmentID INT PRIMARY KEY,
PatientName VARCHAR(255),
DoctorName VARCHAR(255),
AppointmentDate DATE,
AppointmentTime TIME,
Status VARCHAR(255)
);

INSERT INTO Appointments VALUES


(1234, 'sachin tidke', 'ganesh bhadke', '2024-08-20', '10:00:00', 'scheduled'),
(9877, 'ganesh bhadke', 'pankaj shirsath', '2024-08-10', '12:00:00', 'scheduled'),
(1294, 'pratik ekshinge', 'ganesh borade', '2024-08-22', '10:00:00', 'scheduled'),
(1634, 'suyash gavate', 'sujal jori', '2024-08-23', '10:00:00', 'scheduled'),
(1235, 'rohan tidke', 'aniket rathod', '2024-08-26', '10:00:00', 'scheduled');

SELECT * FROM Appointments;

CREATE TABLE Doctors (


DoctorID INT PRIMARY KEY,
Name VARCHAR(255),
Specialty VARCHAR(255)
);

INSERT INTO Doctors VALUES


(171712, 'pankaj shirsath', 'heart specialty'),

(174562, 'nikam guarav', 'eye specialty'),


(174543, 'varad ubale', 'heart specialty'),
(235453, 'vivek singh', 'eye specialty'),
(342348, 'prasad tekawade', 'heart specialty');

SELECT * FROM Doctors;

CREATE TABLE Specialization (


specialization_id INT PRIMARY KEY AUTO_INCREMENT,
specialization_name VARCHAR(20)
);

INSERT INTO Specialization (specialization_name) VALUES


('kumar'),
('shinde');

SELECT * FROM Specialization;

CREATE TABLE Clinic (


clinic_id INT PRIMARY KEY,
clinic_name VARCHAR(255),
location_code VARCHAR(50)
);

INSERT INTO Clinic (clinic_id, clinic_name, location_code) VALUES


(1, 'City Health Clinic', 'LOC001'),
(2, 'Downtown Medical Center', 'LOC002'),

(3, 'Suburban Care Clinic', 'LOC003'),


(4, 'Eastside Family Practice', 'LOC004'),
(5, 'Northview Health Services', 'LOC005');

SELECT * FROM Clinic;

CREATE TABLE Payments (


payment_id INT PRIMARY KEY,
amount DECIMAL(10, 2),
payment_date DATE,
payment_method VARCHAR(50),
appointment_id INT,
FOREIGN KEY (appointment_id) REFERENCES Appointments(AppointmentID)
);

INSERT INTO Payments (payment_id, amount, payment_date, payment_method, . ‘


‘appointment_id) VALUES
(1, 100.00, '2024-09-01', 'Credit Card', 1234),
(2, 150.50, '2024-09-05', 'Cash', 9877),
(3, 200.00, '2024-09-10', 'Debit Card', 1294),
(4, 120.75, '2024-09-15', 'Credit Card', 1634),
(5, 80.00, '2024-09-20', 'PayPal', 1235);

SELECT * FROM Payments;


• Output

1:

2:

3:
5:

:
6:

7:
s

WEEKLY PROGRESS REPORT

MICRO PROJECT

SR.NO. WEEK ACTIVITY PERFORMED SIGN OF GUIDE DATE


1st Discussion and finalization
01. of topic 2024

2nd Preparation and submission of


02. Abstract 2024
3rd Literature Review
03. 2024
4th Collection of Data
04. 2024
5th Collection of Data
05. 2024
6th Discussion and outline of
06. Content 2024
7th Formulation of Content
07. 2024
8th Editing and proof Reading
08. of Content 2024
9th Compilation of Report
09. 2024
Seminar
10th
10. 2024
Viva voc
11th
11. 2024
12th Final submission of Micro
12. Project 2024

Sign of the student Sign of the faculty


ANEEXURE

Evaluation sheet for the Micro Project Academic Year: 2024-2025.

Name of Faculty: Mr. Pratik bhagat

Course: Computer Engineering

Course code: CO3K


Semester: 3rd

Title of the Project: Appointment management system


Major learning outcomes achieved by students by doing the project
Practical outcomes:
Unit outcomes in cognitive domain Outcomes in Affective domain:
Marks out of Marks out of for
6 for performance in
Sr. Roll Student Name Total
performance oral/
No No. out of 10
in group presentation
activity (D5Col.9)
(D5Col.8)
1 113 Rushikesh S.Thombre
2 114 Sachin R. Tidke
3 115 Hiten R. Toke

(Signature of Faculty)

You might also like

pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy