You are on page 1of 1

Patient Health Record Information:

Tables:
Database:mysql
Patient (Parent Table):
Column Name
PatientID
Name
DOB
Age
Address
Phone No
Email Address

Data Type
Auto Number (Primary Key)
VARCHAR(100)
DATE
INT
VARCHAR(250)
VARCHAR(25)
VARCHAR(50)

Purpose

Patient_Health_Records (Child Table of Patient)


Column Name
HealthRecordID
PatientID
Problem_Description
StartDate

Data Type
Auto Number (Primary Key)
Foreign Key To Patient
VARCHAR(500)
DATE

EndDate
DoctorName
HospitalName
Presciption_Details

DATE
VARCHAR(50)
VARCHAR(100)
VARCHAR(250)

Follow_Up_Actions

VARCHAR(250)

Comments

VARCHAR(250)

Purpose

When the health issue


started
Date it was cured

Prescription provided by the


doctor
Any follow up actions
required
Any other details

JSP Pages (Web forms):


1. Patient Entry Form To capture patient name and other details. Data should get stored in
Patient table
2. Patient Health Entry Form To capture health issues details. Data should get stored in Patient
Health Records table
3. Patient List To list all patient

You might also like