You are on page 1of 12

B.V.

BHOOMARADDI COLLEGE OF ENGINEERING AND


TECHNOLOGY

Department of Instrumentation Technology


DBMS COURSE PROJECT
TOPIC: BLOOD BANK MANAGEMENT

Komal Niranjan
L Bhargavi Reddy

2BV13IT043
2BV13IT045

Under Guidance of: Prof Vishal Pattanshetti


Department of Instrumentation
Technology

CONTENTS

Problem statement
Entities and attributes
ER Diagram
ER-relation mapping(schema)
code

Problem statement
To create a blood bank management
system that makes a healthy
transaction between hospital , blood
bank and donor.

Introduction
We have seen the emergence of many blood
banking system with individual donor as well as
accepter.
It helps in creating as well as storing a proper
database for the blood bank requirement and
each and every step procedures of a donor as
well as accepter
Our database system for blood banking may
reduce the paper work of the hospital members.

ER DIAGRAM

ER-RELATION
MAPPING

SQL Queries to create Acceptor table.


create table acceptor2(
Idaint primary key,
name varchar(20),
age number(15),
gender varchar(10)
);

SQL Queries to create Donor table.


create table donor2(
idd int primary key,
name varchar(20),
age number(15),
gender varchar(10)
);

SQL Queries to create Bloodbank table.


create table bsm(
ida int,
idd varchar(5),
bg varchar(5)
);

Thank you and Suggestions.

1/12/17

You might also like