You are on page 1of 24

WEB BASED

HOSPITAL
MANAGEMENT
SYSTEM
NAGA SAI SINDHU AISHWARYA KOTHA
AVINASH KOPPULA
BHAGYA LAKSHMI BIKKI
PRANEETHA REDDY CHEEDEPUDI
SRIKANTH MANNEM
JAYASREE ERAGANABOINA

Application Description
Overview
It is an secure application that can be used by doctors and health
department to view the records of patients and the treatment given
to them.
Technologies Used
HTML( Frontend and backend is not connected due to some issues)
RDBMS - Oracle

Home Screen

Entity Relationship Diagram

Relationships

Patient follow-up Treatment

Department has Doctors

Patient belongs to Department

Doctor suggests Treatment

Patient billed for Tests

Guardian takes care of Patient

Entities

Doctor(strong entity)

Department (strong entity)

Patient (strong entity)

Treatment

Tests

Guardian(weak entity)

Attributes

Composite Attribute Name

Derived Attribute Age

Multi valued Attribute email, phone number

Database Schema

Sample code
CREATE TABLE patient(
patient_id varchar2(40) not null,
f_name varchar2(40),
l_name varchar2(40),
m_name varchar2(40),
pat_address varchar2(40),
gender char(5),
intensity_stage(2,2),
dob date,
dno varchar2(15),
primary key (patient_id ),
foreign key (dno) references department(dept_id) );

Relational Database Schema

Database Instances
(patient)

Database Instances
(Department)

Database Instances
(tests)

Database Instances
(bills)

Database Instances
(Doctor)

QUERY

QUERY

QUERY

To add a new doctor


insert into doctor
values('228','SINDHU','KOTHA','AISWARYA','348 Firwood
Drive','sindhukotha24@gmail.com','MALE', '22655', '02/02/1994',
'538');

Doctor names under cardiology department


Select f_name,l_name
From doctor,department
Where department.dept_name=cardiology and
doctor.dno=department.dept_id;

Conclusion
It

is a secured database in which patient data is highly confidential


that can be accessed by the database administrator only.

For

implementing these feature we have authorized the database


such that each department can access the data belonging to
respective department except the patient details.

THANKS!
NAGA SAI SINDHU AISHWARYA KOTHA

SRIKANTH MANNEM
AVINASH KOPPULA
BHAGYA LAKSHMI BIKKI

PRANEETHA REDDY CHEEDEPUDI

SRIKANTH MANNEM
JAYASREE ERAGANABOINA

You might also like