0% found this document useful (0 votes)
6 views12 pages

Dms Final Report

Uploaded by

waghsukanya153
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)
6 views12 pages

Dms Final Report

Uploaded by

waghsukanya153
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/ 12

A

Micro project report On

“Restaurant Management System”

SUBMITTED TO M.S.B.T.E., Mumbai

For the Award of

Roll no Name of Student Enrollment no

42 Shreya Somnath Ghemad 23212470484


43 Priyanka Sachin Phadtare 23212470485
59 Shrutika Mohan Dubal 23212470502
60 Sanskruti Sachin Yadav 23212470503

M.S.B.T.E.
Evolution sheet for Micro Project
Academic Year:- 2024-25 Name of Faculty:- Mr.S.W.Koli
Course:-Information technology Course Code:- IF3K
Subject:- Database Management System Subject Code:- 313302
Semester:- 3 Scheme:- K

Title of Project:- Online Voting

Major Learning Outcomes achieved by students by doing the Project:

(a)Practical
Outcomes:

(b) Unit 1.
Outcomes in
Cognitive domain:

(c) Outcomes in 1.
Affective Domain:

Comments/Suggestions about team work/leadership/inter-personal communication (if any)

Marks out of 4
Marks out of 6 Total
for
for performance mars
Roll No Name of students performance
in group activity out of
in oral/
10
Presentation
42 Shreya Somnath Ghemad
43 Priyanka Sachin Phadtre
59 Shrutika Mohan Dubal
60 Sanskruti Santosh Yadav

Guide Mr S.W.Koli
SVERI’s COLLEGE OF ENGINEERING (POLYTECHNIC), PANDHARPUR.

CERTIFICATE

This is to certify that the Project report entitled


“Restaurant Management System”
Submitted by

Roll no Name of Student Enrollment no

42 Shreya Somnath Ghemad 23212470484

43 Priyanka Sachin Phadtare 23212470485

59 Shrutika Mohan Dubal 23212470502

60 Sanskruti Sachin Yadav 23212470503

is a bonafide work carried out by above students, under the guidance of Mr.S.W.Koli and it is
submitted towards the fulfillment of requirement of MSBTE, Mumbai for the award of Diploma in
Information Technology at SVERI’s COE (Polytechnic), Pandharpur during the academic year 2024-2025 .

(Mr. S.W.Koli )
Guide
(Mr. G.S.Misal) (Dr. N. D. Misal)
HOD Principal

Place: Pandharpur

Date: / /
Acknowledgement

“” has been developed successfully with a great contribution of five students in a period of two
months. We like to appreciate their guidance, encouragement and willingness since without their support
the project would not have been a success. We would like to give our heartfelt gratitude to Principal Dr.
N.D. Misal , HOD Mr. G. S. Misal & Guide Ms. S. W. Koli who is the supervisor of our project for
helping and encouraging us in many ways to make our project a success. We would never been able to
finish our work without great support and enthusiasm from friends and support from our family. We
would like to thank the department of Information Technology, for giving us permission to initiate this
project and successfully finish it.
Restaurant Management System

1. Rationale:

2. Aim/Benefits of the Micro-project:

Restaurant management systems are designed to help individuals and organizations manage their
restaurant in a more efficient and productive manner.
Benefits of restaurant management systems:
1. More time-efficient
2. Higher profits with better restaurant management
3. Better productivity
4. Better work-life balance
5. More focused work

3. Course Outcomes Achieved:

Design E-R diagram and create normalized database on given data

4. Literature Review

A literature review on Restaurant Management System (RMS) is a comprehensive study of the existing
literature on the topic. It aims to identify, analyze, and synthesize the existing knowledge on RMS .Efforts
have been made to continually improve these systems.
5. Actual Methodology Followed:

Schema:-

1
6. Output of Micro-Project:

Table For Emp

Emp-id Emp-name Salary Designation


1 Sonakshi 50000 Manager
2 Amit 30000 Chef
3 Simran 15000 Waiter
4 Sneha 10000 Dish-washer
5 Prachi 10000 Cleaner

Table For Cust

cid cname oid oname totalb


ill
1 Shruti 1111 Samosa 25
5 Vanshika 1131 Pizza 180
2 Keshav 1211 Noodles 80
3 Mrunali 1231 Burger 99.5
1 Shruti 1311 Cold coffee 50
4 Ketki 1321 Chicken Biryani 250
7 Shreya 1341 ChickenCurry 450
6 Kranti 1421 Mutton Curry 500
2 Keshav 1431 Manchurian 80
5 Vanshika 1631 Burger 150.5
5 Vanshika 1931 Coffee 100.5
Table For Restro

Emp_id C_id
1 1
1 5
5 3
5 2
5 1
3 2
3 4
3 2
3 1
3 6
2 1|
2 2
2 4
7. Queries
Query’s For Emp:-
mysql> create database rmsystem;
Query OK, 1 row affected (0.02 sec)
mysql> use rmsystem;
Database changed
mysql> create table emp(empid int primary key,empname varchar(20),salary float,deptname varchar(20));
Query OK, 0 rows affected (0.07 sec)

mysql> create table cust(cid int,cname varchar(20),oid int primary key,oname varchar(30),totalbill float);
Query OK, 0 rows affected (0.09 sec)

mysql> create table restro(empid int references emp(empid),cid int references cust(cid));
Query OK, 0 rows affected (0.07 sec)

mysql> alter table emp add column desg varchar(20);


Query OK, 0 rows affected (0.05 sec)
Records: 0 Duplicates: 0 Warnings: 0

mysql> alter table emp drop column deptname;


Query OK, 0 rows affected (0.04 sec)
Records: 0 Duplicates: 0 Warnings: 0

mysql> select*from emp;


Empty set (0.01 sec)

mysql> insert into emp values(1,'Sonakshi',50000,'Manager');


Query OK, 1 row affected (0.02 sec)

Query’s For Cust :-

mysql> insert into cust values(1,'Shruti',1111,'Samosa',25.00);


Query OK, 1 row affected (0.01 sec)

mysql> insert into cust values(2,'Keshav',1211,'Noodles',80.00);


Query OK, 1 row affected (0.02 sec)

mysql> select*from cust;


Query’s For Restro :-

mysql> insert into restro values(1,1);


Query OK, 1 row affected (0.01 sec)

mysql> insert into restro values(1,5);


Query OK, 1 row affected (0.02 sec)

mysql> select*from restro

Queries :-
● select cname,sum(totalbill)from cust group by cname;

● select cname,sum(totalbill)from cust group by cname having sum(totalbill)>400;

● select empname from emp where empid IN(select empid from restro where cid=5);

● select empname from emp where empid IN(select empid from restro where cid=2);

● select empname from emp where empid IN(select empid from restro where cid=3);

● select empname from emp where empid IN(select empid from restro where cid=1);
7.Actual Resource Used:

Sr. No Name of Recourse Specification Qty Remark

RAM: 8GB
1 Laptop Processor: i5 1
HDD: 1TB
Graphic: 2GB
2
MySQL/ Maria DB Version 10.4.6 1

8. Skill Developed/Learning outcome of Micro-Project:

The Restaurant Management System benefits are time-efficiency means to save time that is usually
wasted, organizing important information becomes easier, allowing you to stay focused on essential work
higher profits and better productivity.

9. Application of this Micro-Project:

1. Employee Support : These systems aid in handling internal communication and inquiries.
2. Sales : Restaurant management software streamlines communication with leads and prospects.
3. Marketing : For managing restaurant campaigns and feedback.
4. Human Resources : Useful for employee inquiries.

10. Conclusion:

The Restaurant management is the process of managing restaurant with help of database to improve
productivity.It reflects the relation between a restaurant ,employeeand customer
11. References:

https://www.javatpoint.com/dml-commands-in-sql

https://www.tutorialspoint.com/what-are-the-dml-commands-in-dbms

You might also like