This project was part of my two final class projects for at srbiau:Database And Principles of Sofware Design,
Article ID: IJCIET_09_01_090 Cite this Article: Ahmad Muhsin, Djawoto, Priyo Susilo and Muafi, Hospital Performance Improvement Through The Hospital Information System Design

You can view the full SQL code here.
-- Sample SQL code shown below
-- patient table
Create table patient(
PatientId int is Not null,
Name varchar(128),
Gender varchar(16),
Age smallint,
MRID int,
primary key (patientID)
foreign key (MRID) REFERENCES medicalrecord(MRID)
);
- Admin: Manages all users, assigns roles, handles system settings.
- Doctor: Accesses patient records, updates treatment plans, schedules appointments.
- Nurse: Views patient records, updates vitals, assists in treatment.
- Receptionist: Manages patient appointments, updates contact information.
- Patient: Views personal health records, schedules appointments.
- Patient Registration: New patients can register and existing patients can update their information.
- Appointment Scheduling: Doctors and patients can schedule, update, and cancel appointments.
- Electronic Health Records (EHR): Secure storage and retrieval of patient health data.
- Billing and Payments: Generates bills for services and processes payments.
- Pharmacy Management: Tracks inventory and manages medication dispensing.
- Security: Ensure patient data is encrypted and access is role-based.
- Scalability: The system should handle a growing number of users and data.
- Usability: The interface should be intuitive for all user roles.
- Reliability: System uptime should be above 99.9%.




