0% found this document useful (0 votes)
98 views46 pages

Rani Laxmi Bai Memorial School Vikas Nagar, Sector-3: Computer Science (083) Project

This document contains code for a hospital management system project in Python. It includes functions to create tables for doctor details, patient details, and worker details. Additional functions allow adding records to these tables, describing the table structures, displaying all records, and searching/updating individual records. The project uses the MySQL connector library and connects to a hospital management system database.

Uploaded by

Priya Darshni
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)
98 views46 pages

Rani Laxmi Bai Memorial School Vikas Nagar, Sector-3: Computer Science (083) Project

This document contains code for a hospital management system project in Python. It includes functions to create tables for doctor details, patient details, and worker details. Additional functions allow adding records to these tables, describing the table structures, displaying all records, and searching/updating individual records. The project uses the MySQL connector library and connects to a hospital management system database.

Uploaded by

Priya Darshni
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/ 46

RANI LAXMI BAI MEMORIAL SCHOOL

VIKAS NAGAR ,SECTOR-3

SESSION: 2020-2021

COMPUTER SCIENCE (083) PROJECT


STD :- 12TH SCIENCE

ROLL NO. :-

SUBMITTED TO: SUBMITTED BY:


MRS. SOUMYA RASTOGI PRATEEK SINGH
Project Based On :
Hospital
Managemen
t
System
Certificate
This is to certify that PRATEEK SINGH is a certified
student of class XIIth of Rani Laxmi Bai Memorial School
affiliated by CBSE board and has successfully completed the
project on Hospital Management System under the guidance
of computer faculty by Mrs. Soumya Ma’am.

__________________________ __________________________
SIGNATURE OF EXTERNAL SIGNATURE OF INTERNAL
EXAMINAR EXAMINAR

__________________________
SIGNATURE OF PRINCIPAL

DATE:_________________
ACKNOWLEDGEMENT
In the accomplishment of this project successfully, many
people have best owned upon me their blessings and the
heart pledge support, this time I am utilizing to thank all
the people who have been concerned with this project.
Primarily I would like thank god for being able to
complete this project with success. Then I would like to
thank my principal Mrs. Neelam Shukla and my
Computer
Science teacher Mrs. Soumya Rastogi whose valuable
guidance
has been the ones that helped me patch this project and
make it full proof success, his suggestions and
instruction has served as the major contribution towards
the completion of this project.
Then I would like to thank my parents who have helped
me with their valuable suggestions and guidance has
been very helpful in various phases of the completion of
the project.
THANK YOU
INTRODUCTION

The project Hospital Management system includes


registration of patients, storing their details into the
system, and also computerized billing in the pharmacy,
and labs. The software has the facility to give a unique id
for every patient and stores the details of every
patient and the staff automatically. It includes a search
facility to know the current status of each room. User can
search availability of a doctor and the details of a
patient using the id.
The Hospital Management System can be entered using a
username and password. It is accessible either by an
administrator or receptionist. Only they can add data into
the database. The data can be retrieved easily. The
interface is very user-friendly. The data are well
protected for personal use and makes the data processing
very fast.

The purpose of the project entitled as “HOSPITAL


MANAGEMENT SYSTEM” is to computerize the Front Office
Management of Hospital to develop software which is user
friendly, simple, fast, and cost – effective. It deals with
the collection of patient’s information, diagnosis details,
etc.
HARDWARE AND SOFTWARE USED...

SYSTEM:
 Microsoft windows 7
 Service pack 1

COMPUTER:
 AMD athlon(tm) 64x2 dual core
processor 4200+

TEXT EDITOR:
 Microsoft office word

INTERPRETER
 Python 3.7
CODING

import mysql.connector as msc

conn =
msc.connect(host="localhost",user="root",passwd="prateek24",database="hospital_management_syste
m")

cur=conn.cursor()

def AdminMenu():

print("| |")

print("| 1:Create table doctor_details |")

print("| 2:Describe doctor_details |")

print("| 3:Register Doctor Details |")

print("| 4:Display all Doctor details |")

print("| 5:Create table patient_details |")

print("| 6:Describe patient_details |")

print("| 7:Register Patient details |")

print("| 8:Display all patient details |")

print("| 9:Create table worker_details |")

print("| 10:Describe worker_details |")

print("| 11:Register Worker details |")

print("| 12:Display all Worker details |")

print("| 13:Search Doctor details |")

print("| 14:Search Patient details |")

print("| 15:Search Worker details |")


print("| 16:Update Doctor details |")

print("| 17:Update Patient details |")

print("| 18:Update Worker details |")

print("| 19:Create table Bill |")

print("| 20:Enter charges of Pateint for Bill_details |")

print("| 21:Show records of Bill | ")

print("| 22:Delete records | ")

print("| 23:Remove All Doctor |")

print("| 24:Remove All Patient |")

print("| 25:Remove All Worker |")

print("| 26:Display details of a particular Doctor |")

print("| 27:Display details of a particular Patient |")

print("| 28:Dispaly details of a particular Worker |")

print("| 29:Run Query of your choice on doctor_details table |")

print("| 30:Run Query of your choice on patient_details table |")

print("| 31:Run Query of your choice on worker_details table |")

print("| 32:Exit |")

print("| |")

def UserMenu():

print("| |")

print("| 1:Display details of a particular Doctor |")

print("| 2:Display details of a particular Patient |")

print("| 3:Dispaly details of a particular Worker |")

print("| 4:Display All Doctor details |")

print("| 5:Display All Patient details |")


print("| 6:Display All Worker details |")

print("| 7:Search Doctors details |")

print("| 8:Search Patients details |")

print("| 9:Search Workers details |")

print("| 10:Run Query of your choice on doctor_details table |")

print("| 11:Run Query of your choice on patient_details table |")

print("| 12:Run Query of your choice on worker_details table |")

print("| 13:Exit |")

print("| |")

def Doctor_details(): #To Create Doctor's table

cur.execute("create table doctor_details(d_id int primary key,d_name varchar(30),d_age int,d_gender


varchar(10),d_department varchar(20),d_post varchar(30),d_phone Bigint(11));")
print(":::::::::::|||||||:::::::::: Table Created Successfully :::::::::::|||||||::::::::::")

def Patient_details(): #To Create Patient's table

cur.execute("create table patient_details(p_id int primary key,p_name varchar(30),p_age int,p_gender


varchar(10),p_problems varchar(20),p_phone Bigint(11));")
print(":::::::::::|||||||:::::::::: Table Created Successfully :::::::::::|||||||::::::::::")

def Worker_details(): #To Create Worker's table

cur.execute("create table worker_details(w_id int primary key,w_name varchar(30),w_age


int,w_gender varchar(10),w_workname varchar(20),w_phone Bigint(11));")
print(":::::::::::|||||||:::::::::: Table Created Successfully :::::::::::|||||||::::::::::")

def Add_doctor(): #To Add New Doctor

print(" Enter New Doctor Information : ")

i= int(input(" Enter ID of Doctor : "))


n=input(" Enter Doctor Name : ")

a=int(input(" Enter Age : "))

g=input(" Enter Gender (F or M) :")

d=input(" Enter the Department : ")

p= input(" Enter the Post : ")

ph=int(input(" Enter Phone Number : "))

cur.execute("insert into doctor_details values(%s,'%s',%s,'%s','%s','%s',%s)"%(i,n,a,g,d,p,ph))

conn.commit()

conn.close()

print(":::::::::::|||||||:::::::::: Registered New Doctor :::::::::::|||||||::::::::::")

def Add_Patient(): #To Add New patient

print(" Enter New Patient Information ")

i= int(input(" Enter ID of Patient : "))

n=input(" Enter Patient Name : ")

a=int(input(" Enter Age : "))

g=input(" Enter Gender (F or M) : ")

p=input(" Enter the Problems: ")

ph=int(input(" Enter Phone Number : "))

cur.execute("insert into patient_details values(%s,'%s',%s,'%s','%s',%s)"%(i,n,a,g,p,ph))

conn.commit()

conn.close()

print(":::::::::::|||||||:::::::::: Registered New Patient :::::::::::|||||||::::::::::")

def Add_worker(): #To Add New Worker


print(" Enter New Worker Information : ")

i= int(input(" Enter ID of Worker : "))

n=input(" Enter Worker Name : ")

a=int(input(" Enter Age : "))

g=input(" Enter Gender (F or M) : ")

w=input(" Enter type of Work : ")

ph=int(input(" Enter Phone Number : "))

cur.execute("insert into worker_details values(%s,'%s',%s,'%s','%s',%s)"%(i,n,a,g,w,ph))

conn.commit()

conn.close()

print(":::::::::::|||||||:::::::::: Registered New Worker :::::::::::|||||||::::::::::")

def desc_doctor(): #TO Describe Doctor_details

print(" Structure of doctor_details table ")

cur.execute("desc doctor_details")

for i in cur :

print(i)

conn.close()

def desc_patient(): #TO Describe Patient_details

print(" Structure of patient_details table ")

cur.execute("desc patient_details")

for i in cur :

print(i)

conn.close()
def desc_worker(): #TO Describe Worker_details

print(" Structure of worker_details table ")

cur.execute("desc worker_details")

for i in cur:

print(i)

conn.close()

def DisplayAllDoctor(): #To Display All Doctors

print(" In which order you want to display the doctor_details : ")

x=int(input(" 1: Ascending order \n 2: Descending order \n 3: As present in table\n "))

if x==1:

col=input(" Enter column name with respect to which you want to order the records : ")

cur.execute("select * from doctor_details order by %s asc" %(col,))

elif x==2:

col=input(" Enter column name with respect to which you want to order the records : ")

cur.execute("select * from doctor_details order by %s desc" %(col,))

else:

cur.execute("select * from doctor_details")

for x in cur:

for j in x:

print(j,end='\t')

print()

conn.close()
def DisplayAllPatient(): #To Display All Patients

print(" In which order you want to display the patient_details : ")

x=int(input(" 1: Ascending order \n 2: Descending order \n 3: As present in table \n "))

if x==1:

col=input(" Enter column name with respect to which you want to order the records : ")

cur.execute("select * from patient_details order by %s asc" %(col,))

elif x==2:

col=input(" Enter column name with respect to which you want to order the records : ")

cur.execute("select * from patient_details order by %s desc" %(col,))

else:

cur.execute("select * from patient_details")

for x in cur:

for j in x:

print(j,end='\n')

print()

conn.close()

def DisplayAllWorker(): #To Display All Workers

print(" In which order you want to display the worker_details : ")

x=int(input(" 1: Ascending order \n 2: Descending order \n 3: As present in table\n "))

if x==1:

col=input(" Enter column name with respect to which you want to order the records : ")

cur.execute("select * from worker_details order by %s asc" %(col,))

elif x==2:
col=input(" Enter column name with respect to which you want to order the records : ")

cur.execute("select * from worker_details order by %s desc" %(col,))

else:

cur.execute("select * from worker_details")

for x in cur:

for j in x:

print(j,end='\n')

print()

conn.close()

def SearchDoctor(): #To Search Doctor

d = int(input(" Enter the ID of Doctor to be searched : "))

cur.execute("select * from doctor_details where d_id =%s"%(d,))

x = cur.fetchone()

if x == None:

print(" No such Records of Doctor is found !! ")

else:

for i in x:

print(i,end="\t")

print()

def SearchPatient(): #To Search Patient

d = int(input(" Enter the ID of Patient to be searched : "))

cur.execute("select * from patient_details where p_id =%s"%(d,))

x = cur.fetchone()
if x == None:

print(" No such Patient found !! ")

else:

for i in x:

print(i,end="\t")

print()

def SearchWorker(): #To Search Worker

d = int(input(" Enter the ID of worker to be searched : "))

cur.execute("select * from worker_details where w_id =%s"%(d,))

x = cur.fetchone()

if x == None:

print(" No such Worker found !! ")

else:

for i in x:

print(i,end="\t")

print()

def update_doctor(): #To Update Doctor Details

d = int(input(" Enter the Doctor's ID to be modified : "))

a = input("1: To change the Age \n 2: To change the Department \n 3: To change the post \n 4: To
change the phone number \n 5: To Change All the details \n ")
if a == '1':

x = int(input(" Enter the new Age : "))

cur.execute("update doctor_details set d_age =%s where d_id = %s"%(x,d))


elif a=='2':

x = input(" Enter the new Department : ")

cur.execute("update doctor_detials set d_name = '%s' where d_id = %s"%(x,d))

elif a=='3':

x = input(" Enter the new Post : ")

cur.execute("update doctor_details set d_post ='%s' where d_id = %s"%(x,d))

elif a=='4':

x = int(input(" Enter the new phone Number : "))

cur.execute("update doctor_details set d_phone =%s where d_id = %s"%(x,d))

elif a=='5':

ag = int(input(" Enter the Age : "))

p = input(" Enter the new Department : ")

po = input(" Enter the new post : ")

n = input(" Enter the new phone number : ")

cur.execute("update doctor_deatils set p_age =%s ,p_name ='%s',p_post ='%s',p_phone =%s where
d_id =%s"%(ag,p,po,n,d))

else :

print(" Invalid Option!! ")

return

conn.commit()

conn.close()

print(":::::::::::|||||||:::::::::: Details updated :::::::::::|||||||::::::::::")


def update_worker(): #To Update Worker Details

d = int(input(" Enter the Worker's ID to be modified : "))

a = input(" 1: To change the Age \n 2: To change work name \n 3: To change the phone number \n 4:Change all the detail\n:")
if a == '1':

x = int(input(" Enter the new Age : "))

cur.execute("update worker_details set w_age =%s where w_id = %s"%(x,d))

elif a=='2':

x = input(" Enter the new Work name : ")

cur.execute("update worker_detials set w_workname = '%s' where w_id = %s"%(x,d))

elif a=='3':

x = int(input(" Enter the new phone number : "))

cur.execute("update worker_details set w_phone =%s where w_id = %s"%(x,d))

elif a=='4':

ag = int(input(" Enter the Age : "))

w = input(" Enter the new Work name : ")

n = input(" Enter the new phone number : ")

cur.execute("update worker_deatils set w_age =%s ,w_workname ='%s',p_phone =%s where w_id =%s"%(ag,w,n,d))

else :

print(" Invalid Option!! ")

return

conn.commit()

conn.close()

print(":::::::::::|||||||:::::::::: Details updated :::::::::::|||||||::::::::::")


def update_patient(): #To Update Patient Details

d = int(input(" Enter the Patient's ID to be modified : "))

a = input(" 1: To change the Age \n 2: To change patient's problem \n 3: To change the phone number \n 4: Chage All details
\n")

if a == '1':

x = int(input(" Enter the Age : "))

cur.execute("update patient_details set p_age =%s where p_id = %s"%(x,d))

elif a=='2':

x = input(" Enter the patient's problem : ")

cur.execute("update patient_detials set p_problems ='%s' where p_id = %s"%(x,d))

elif a=='3':

x = int(input(" Enter the new phone number : "))

cur.execute("update patient_details set p_phone =%s where p_id = %s"%(x,d))

elif a=='4':

ag = int(input(" Enter the Age : "))

p = input(" Enter the Patient's Problem : ")

n = input(" Enter the new phone number : ")

cur.execute("update patient_deatils set p_age =%s ,p_problems ='%s',p_phone =%s where p_id =%s"%(ag,p,n,d))

else :

print(" Invalid Option!! ")

return

conn.commit()

conn.close()

print(":::::::::::|||||||:::::::::: Details updated :::::::::::|||||||::::::::::")


def Bill_details(): #To Create Bill

cur.execute("create table bill(p_id int,p_name varchar(25),p_age int(3),drvisit varchar(40),medicines(15),room int(15)")

print(":::::::::::|||||||:::::::::: Table Created :::::::::::|||||||::::::::::")

def AddBill(): #To Add Bill

print(" Enter Charges of patient in the bill ")

i = int(input(" Enter ID of Patient : "))

n = input(" Enter Patient Name : ")

a = int(input(" Enter Patient age : "))

d = int(input(" Enter fee of Dr's visites : "))

m = int(input(" Enter the cost of medicines : "))

r = int(input(" Enter Room charges : "))

cur.execute("insert into bill values(%s,'%s',%s,%s,%s,%s)"%(i,n,a,d,m,r))

conn.commit()

conn.clos()

def ShowBill(): #To Show Bill

print(" All Records of Bill ")

cur.execute("Select * from bill ")

for i in cur :

for j in i:

print(j,end="\t")

print()

conn.close()
def delete_records(): #To Delete Records

a = int(input("1: Delete Doctor's Record \n 2: Delete Patients's Record \n 3: Delete Worker's Record \n 4: Delete Bill Record "))

if a == 1:

x = input(" Enter a column name on the basis of which you want to Remove the Doctors : ")

v = input(" Enter its value : ")

if x in ("d_id","d_age","d_phone"):

cur.execute("delete from doctor_details where %s = %s" %(x,eval(v)))

else:

cur.execute("delete from doctor_details where %s = '%s'" %(nm,v))

conn.commit()

conn.close()

print(":::::::::::|||||||:::::::::: Doctors removed successfully :::::::::::|||||||::::::::::")

elif a == 2:

x = input(" Enter a column name on the basis of which you want to Remove the Patient : ")

v = input(" Enter its value :")

if x in ("p_id","p_age","p_phone"):

cur.execute("delete from patient_details where %s = %s" %(x,eval(v)))

else:

cur.execute("delete from patient_details where %s = '%s'" %(nm,v))

conn.commit()

conn.close()

print(":::::::::::|||||||:::::::::: Patients Removed Successfully :::::::::::|||||||::::::::::")

elif a == 3:

x = input(" Enter a column name on the basis of which you want to Remove the Worker : ")
v = input(" Enter its value : ")

if x in ("w_id","w_age","w_phone"):

cur.execute("delete from worker_details where %s = %s" %(x,eval(v)))

else:

cur.execute("delete from worker_details where %s = '%s'" %(nm,v))

conn.commit()

conn.close()

print(":::::::::::|||||||:::::::::: Workers Removed Successfully :::::::::::|||||||::::::::::")

elif a == 4:

x = input(" Enter a column name on the basis of which you want to Remove the Bill details : ")

v = input(" Enter its value : ")

if x in ("p_id","p_age","drvisit","medicines","room"):

cur.execute("delete from bill where %s = %s" %(x,eval(v)))

else:

cur.execute("delete from bill where %s = '%s'" %(nm,v))

conn.commit()

conn.close()

print(":::::::::::|||||||:::::::::: Bill Removed Successfully :::::::::::|||||||::::::::::")

def RemoveAllDoctors(): #To Remove All

Doctors cur.execute("delete from doctor_details")

conn.commit()

conn.close()
print("| All Doctor removed successfully |")

def RemoveAllPatients(): #To Remove All Patients

cur.execute("delete from patient_details")

conn.commit()

conn.close()

print("| All Patient removed successfully |")

def RemoveAllWorkers(): #To Remove All Worker

cur.execute("delete from worker_details")

conn.commit()

conn.close()

print("| All Worker removed successfully |")

def AdminChoiceQuery_doctor():

print(" Which type of query you want to execute ? ")

ch=int(input(" Press 1 : For Select query\n Press 2 : For Non-Select query\n"))

if ch==1:

s=input(" Enter your Select command Query\n")

cur.execute(s)

d=cur.fetchall()

if d==[]:
print(" :( SORRY!!! None of the records satisfied your query ")

else:

for m in d:

for n in m:

print(n,end="\t")

print()

elif ch==2:

s=input(" Enter your non-select query:\n")

cur.execute(s)

conn.commit()

print("| CONGRATS!!! Query executed successfully |")

print(" Check out the records")

cur.execute("select * from doctor_details")

p=cur.fetchall()

for m in p:

for n in m:

print(n,end="\t")

print()

else:

print(" Invalid Choice!! ")

def AdminChoiceQuery_patient():

print(" Which type of query you want to execute ? ")

ch=int(input(" Press 1 : For Select query\n Press 2 : For Non-Select query\n"))

if ch==1:
s=input(" Enter your Select command Query\n")

cur.execute(s)

d=cur.fetchall()

if d==[]:

print(" :( SORRY!!! None of the records satisfied your query ")

else:

for m in d:

for n in m:

print(n,end="\t")

print()

elif ch==2:

s=input(" Enter your non-select query:\n")

cur.execute(s)

conn.commit()

print("| CONGRATS!!! Query executed successfully |")

print(" Check out the records")

cur.execute("select * from patient_details")

p=cur.fetchall()

for m in p:

for n in m:

print(n,end="\t")

print()

else:

print(" Invalid Choice!! ")


def AdminChoiceQuery_worker():

print(" Which type of query you want to execute ? ")

ch=int(input(" Press 1 : For Select query\n Press 2 : For Non-Select query\n"))

if ch==1:

s=input(" Enter your Select command Query\n")

cur.execute(s)

d=cur.fetchall()

if d==[]:

print(" :( SORRY!!! None of the records satisfied your query ")

else:

for m in d:

for n in m:

print(n,end="\t")

print()

elif ch==2:

s=input(" Enter your non-select query:\n ")

cur.execute(s)

conn.commit()

print("| CONGRATS!!! Query executed successfully |")

print(" Check out the records ")

cur.execute("select * from worker_details")

p=cur.fetchall()

for m in p:

for n in m:

print(n,end="\t")
print()

e lse:

print(" Invalid Choice !! ")

def UserChoiceQuery():

print("| REMEMBER!!! You can only execute Select Query |")

s=input(" Enter your Select command Query\n")

s=s.lower()

if "select" not in s:

print(" Invalid query !! Try Again, Give Select query only ")

else:

cur.execute(s)

d=cur.fetchall()

if d==[]:

print(" :( SORRY!!! None of the records satisfied your query ")

else:

for m in d:

for n in m:

print(n,end="\t")

print()

#Main Program Begins


print("\n\n\t\t |||**** WELCOME TO HOSPITAL DATABASE MANAGEMENT SYSTEM ****|||\n\n")

ch=int(input("Press 1: To login as ADMIN\nPress 2: To login as USER\n\n"))

if ch==1:

a = input(" Enter Admin Password : ")

if a == "Hospital123":

print("\n\n\t| WELCOME ADMIN : Here is the Menu |\n\n")

while True:

print("\n")

AdminMenu()

print("\n")

n = int(input(" Enter Your Choice: "))

if n==1:

Doctor_details()

elif n==2:

desc_doctor()

elif n==3:

Add_doctor()

elif n==4:

DisplayAllDoctor()

elif n==5:

Patient_details()

elif n==6:

desc_patient()

elif n==7:
Add_Patient()

elif n==8:

DisplayAllPatient()

elif n==9:

Worker_details()

elif n==10:

desc_worker()

elif n==11:

Add_worker()

elif n==12:

DisplayAllWorker()

elif n==13 or n==26:

SearchDoctor()

elif n==14 or n==27:

SearchPatient()

elif n==15 or n==28:

SearchWorker()

elif n==16:

update_doctor()

elif n==17:

update_patient()

elif n==18:

update_worker()

elif n==19:

Bill_details()
elif n==20:

AddBill()

elif n==21:

ShowBill()

elif n==22:

delete_records()

elif n==23:

RemoveAllDoctors()

elif n==24:

RemoveAllPatients()

elif n==25:

RemoveAllWorkers()

elif n==29:

AdminChoiceQuery_doctor()

elif n==30:

AdminChoiceQuery_patient()

elif n==31:

AdminChoiceQuery_worker()

elif n==32:

break

else:

print(" Invalid password !! LOGIN UNSUCCESSFUL ")

elif ch==2:

nm=input(" Enter Username: ")

print("\n\n\t\t| WELCOME "+nm+" : HERE IS THE MENU |\n\n")


while True:

print("\n")

UserMenu()

print("\n")

n=int(input(" Enter your choice: "))

if n==1 or n==7:

SearchDoctor()

elif n==2 or n==8:

SearchPatient()

elif n==3 or n==9:

SearchWorker()

elif n==4:

DisplayAllDoctor()

elif n==5:

DisplayAllPatient()

elif n==6:

DisplayAllWorker()

elif n==10 or n==11 or n==12:

UserChoiceQuery()

elif n==13:

break

else:

print(" Invalid Choice !! ")

#END OF CODING
OUTPUT
TO CREATE DOCTOR’S TABLE

TO DECRIBE DOCTOR TABLE


TO ADD NEW DOCTOR

TO DISPLAY ALL DOCTOR DETAILS

#IN ASCENDING ORDER


TO CREATE PATIENT’S TABLE

TO DESCRIBE PATIENT TABLE


TO ADD NEW PATIENT

TO DIPLAY ALL PATIENT DETAILS


TO CREATE WORKER’S DETAIL

TO CREATE WORKER’S DETAIL


TO ADD NEW WORKER

TO DISPLAY ALL WORKER DETAILS

#IN DESCENDING ORDER


SEARCH DOCTOR’S DETAIL

SEARCH PATIENT ’S DETAIL

SEARCH WORKER ’S DETAIL


UPDATE DOCTOR’S DETAIL

BEFORE

AFTER
UPDATE PATIENT’S DETAIL

BEFORE

AFTER
TO ADD NEW BILL

TO DISPLAY ALL BILL RECORDS


CHOICE QUERY
BIBLOIGRAPHY

 SUMITA ARORA CLASS 12TH


 WEBSITE:
 http://www.google.co.in
 http://www.wikipedia.com

You might also like