SlideShare ist ein Scribd-Unternehmen logo
1 von 33
GROUP MEMBERS NO. MATRIX GROUP
ELIS ERVINA BINTI SULIMAN 2012967249 CS 241 3B
ERLIA NADIA BINTI AB. MALEK 2012996329 CS 241 3B
NORA SYAMIMI BINTI KHAIRUDDIN 2012949807 CS 241 3B
NORHIDAYAH BINTI ZULKEFLI 2012755781 CS224 3A
CAR
MOD_CODE
CAR_VIN CAR_COLOR
CAR_YEAR
CHEN MODEL
CAR
PK CAR_VIN
MOD_CODE
CAR_YEAR
CAR_COLOR
CROW’S FOOT MODEL
BASIC SYMBOLS
TERMINOLOGY
Entity type
a collections of things, represent collection of physical things such as
person, places, event, or things.
Attributes
A property of an entity type or relationship. Each attributes has a data
type that defines the kind of values and permission operation on the
attributes.
Relationship
association among entity types, usually two-way or bidirectional. In
crow’s foot notation relationship names appear on the line connecting
the entity types involved in the relationship.
Connectivity
To describe the relationship classification
Cardinality
A constraint on the number of entities that participate in a
relationship. Has minimum and maximum cardinality for both
directions of a relationship.
EXAMPLE
MANY-TO-
MANY (M-N)
ONE-TO-
MANY
(1-M)
ONE-TO-
ONE (1-1)
Classification of cardinalities
 Minimum cardinality based:
 A min cardinality of 1>= (one or more) indicates a
mandatory relationship which creates an existence
dependent
 A min cardinality of 0 indicates an optional relationship
 Maximum cardinality based
 A max cardinality of 1 means the relationship is single-
valued or functional (in math, value 1)
 1-1 (less common), 1-M (common), M-N
(common).
Summary of Cardinalities
Type of entity
Type of
attribute
Relationship
strength
Degree of
relationship
• The entity is
existence
independent
Strong
entity
• The entity is
existence
dependent
Weak
entity
Strong relationship
• Identifying
relationship
• Exist when PK of
related entity
contains PK
component of
parent entity
Weak relationship
• Non-identifying
relationship
• Exist if PK of
related entity does
not contain PK
component of
parent entity
Example
Weak relationship but strong
entity
strong relationship but weak
entity
Attribute Composite
attribute
Simple
attribute
Single
value
attribute
Multivalu
ed
attribute
Derived
attribute
Definition Attribute that
can be further
subdivided to
yield
additional
attribute
Attribute
that cannot
be
subdivided
Attribute
that can
have only a
single value
Attribute
that can
have many
value
Attribute
whose value is
calculated from
other attribute
Example Address
( street, city,
zip code, state)
age, sex,
marital
status
social
security
number, ic
number
level of
education,
car’s color
An emp_age,
May be found
by compUting
the integer
value of the
different
between the
current date
and the
emp_dob
Degree of Relationships
 Unary
Exist when an association is maintained within a single
entity.
Binary
Exist when two entities are associates in a relationship.
 Ternary and higher-degree relationship
Three entities are associates and higher-order
relationship does allow the designer some latitude
regarding the semantic of a problem.
SPECIALIZATION/GANERALIZATION
 Concepts of specialization/generalization is associated
with special types of entities known as
SUPERCLASSES
SUBCLASSES
And the process of
 ATTRIBUTE INHERITANCE
SUPERCLASS
• Entity type that have
one or more distinct
subgrouping of it
occurrences, which
must be represented
in a data model
SUBCLASS
• A distinct
subgrouping
occurrences of an
entity type, which
must be represented
in a data model.
SUPERCLASS/SUBCLASS RELATIONSHIP
 Each member of a subclass is also a member of the
superclass. In other word the entity in subclass is the
same entity in superclass, but have distinct role.
 It has one to one relationship( superclass/ subclass
relationship)
 E.g: Staff/Manager has superclass/subclass
relationship.
EXAMPLES
STAFF
MANAGER
SALES
PERSONNEL
SECRETARY
SUPERCLASS
SUBCLASS
ATTRIBUTE INHERITANCE
 An entity in a subclass represent the same ‘real world’
object in the superclass.
 E.g: A member of the SALES PERSONAL inherit all the
attribute of the STAFF superclass such as
(staffno, name, position, salary) and together with
those sales PERSONAL SUBCLASS
(sales area,car allowance)
GENERALIZATION/SPECIALIZATION
 To make the generalization/specialization we should
identify first their distinguish characteristics and
common characteristics for the attribute that we want
to make generalization.
 Hence, when we know both of them we can separate
the attribute that have common characteristic in
superclass while their different characteristic in every
subclass.
GANERALIZATION SPECIALIZATION
•The process of minimizing the
differences between entities by
identifying their common
characteristic.
•The process of maximizing the
difference between members of entity
by identifying their distinguishing
characteristic.
•The bottom-up process of identifying a
higher level, more generic entity
superclass from lower level entity
subclass.
•The top-down process of identifying
lower level, more specific entity subtype
from a higher level entity super type.
CONSTRAINT ON SPECIALIZATION
OR GANERALIZATION
DISJOINTNESS CONSTRAINT COMPLETENESS CONSTRAINT
•DEF: means that the subtypes
in a generalization hierarchy do
not have any entities in
common
•DEF: means that every entity of super
type must be an entity in one of the
subtypes
•It can be symbolized by : D •It can be symbolized by: C
Staff
StaffNo(PK)
Name
Position
Salary
Branch
BranchNo(PK)
Address
Street
City
postcode
HAS
1,1 1,M
Lets assume that we have this entity type. For the
position attribute (STAFF)it will have manager,
clerk ,cleaner, sales personnel and etc. Hence for
maximizing the difference between members of
entity ,we identifying their distinguishing
characteristic. The process called as
generalization.
GANERALIZATION
Staff
StaffNo(PK)
Name
Position
Salary
Branch
BranchNo(PK)
Address
Street
City
postcode
HAS
1,1 1,M
Manager
mgStartDate
bonus
SalesPersonnel
salesArea
carAllowance
Secretary
typingSpeed
{D,C}
Distinguishing characteristic
GANERALIZATION
Manager
Staff_no
Salary
mgStartDate
Bonus
SalesPersonnel
Staff_no
Salary
salesArea
carAllowance
Branch
BranchNo(PK)
Address
Street
City
postcode
1,1
1,1
manages
Product
Prod_no(PK)
Expired_dte
Prod_name
1,M
1,1
sales by
Lets assume that we have
this entity type. For the
manager and sales
personnel ,we can see
that they have the same
characteristics(attribute).
Hence we can
minimizing the
differences by creating
the other entity. The
process called as
specialization.
SPECIALIZATION
COMMON CHARACTERISTICS
Manager
Staff_no
Salary
mgStartDate
Bonus
SalesPersonnel
Staff_no
Salary
salesArea
carAllowance
Staff
StaffNo(PK)
Name
Position
Salary
{D,C}
Branch
BranchNo(PK)
Address
Street
City
postcode
Product
Prod_no(PK)
Expired_dte
Prod_name
manages
sales by
SPECIALIZATION
Branch
BranchNo(PK)
Address
Street
City
postcode
Staff
StaffNo(PK)
Name
Position
Salary
has
1..1 1..*
PartTimeTemporary
hourlyRate
FullTimePermanent
salaryScale
holidayAllowance
Secretary
typingSpeed
SalesPersonnel
salesArea
carAllowance
Manager
mgStartDate
bonus
1..1
1..1
manages { C} {D, C}
disjointness
constraint
Indicate
specialization/
generalization
Job role subclasses Contract employment
subclasses
EXAMPLE
Business Rule
Step for representation
 Find the entity
 Primary key
 Name the relationship of the connection among
business entity
 Know the connection between two entity
(1-m, 1-1, m-n)
 Find the cardinalities- restrict number of related
entities in a business situation
 Generalization hierarchies- classification of business
entities and organizational policies.
Presentation database about ERD

Weitere ähnliche Inhalte

Was ist angesagt?

D I T211 Chapter 3
D I T211    Chapter 3D I T211    Chapter 3
D I T211 Chapter 3
askme
 
Entity relationship diagram (erd)
Entity relationship diagram (erd)Entity relationship diagram (erd)
Entity relationship diagram (erd)
tameemyousaf
 
Entity Relationship Model
Entity Relationship ModelEntity Relationship Model
Entity Relationship Model
Slideshare
 
E-R diagram in Database
E-R diagram in DatabaseE-R diagram in Database
E-R diagram in Database
Fatiha Qureshi
 

Was ist angesagt? (19)

Entity relationship diagram for dummies
Entity relationship diagram for dummiesEntity relationship diagram for dummies
Entity relationship diagram for dummies
 
The entity relationship model
The entity relationship modelThe entity relationship model
The entity relationship model
 
Data modeling
Data modelingData modeling
Data modeling
 
Entity relationship diagram (erd)
Entity relationship diagram (erd)Entity relationship diagram (erd)
Entity relationship diagram (erd)
 
D I T211 Chapter 3
D I T211    Chapter 3D I T211    Chapter 3
D I T211 Chapter 3
 
Entity Relationship Diagram
Entity Relationship DiagramEntity Relationship Diagram
Entity Relationship Diagram
 
Entity Relationship Diagram
Entity Relationship DiagramEntity Relationship Diagram
Entity Relationship Diagram
 
enhanced er diagram
enhanced er diagramenhanced er diagram
enhanced er diagram
 
Erd examples
Erd examplesErd examples
Erd examples
 
Entity relationship diagram (erd)
Entity relationship diagram (erd)Entity relationship diagram (erd)
Entity relationship diagram (erd)
 
E r model
E r modelE r model
E r model
 
Entity Relationship Model
Entity Relationship ModelEntity Relationship Model
Entity Relationship Model
 
Entity relation(1)
Entity relation(1)Entity relation(1)
Entity relation(1)
 
Dbms ppt
Dbms pptDbms ppt
Dbms ppt
 
ER MODEL
ER MODELER MODEL
ER MODEL
 
RDBMS ERD
RDBMS ERDRDBMS ERD
RDBMS ERD
 
E-R diagram in Database
E-R diagram in DatabaseE-R diagram in Database
E-R diagram in Database
 
Unit02 dbms
Unit02 dbmsUnit02 dbms
Unit02 dbms
 
ER Model in DBMS
ER Model in DBMSER Model in DBMS
ER Model in DBMS
 

Andere mochten auch

Presentation (ahmed abdulrahman)
Presentation (ahmed abdulrahman)Presentation (ahmed abdulrahman)
Presentation (ahmed abdulrahman)
Ahmed Abdulrahman
 
Introduction to Business Modeling
Introduction to Business ModelingIntroduction to Business Modeling
Introduction to Business Modeling
Laurence White
 
Erd for teaching staff
Erd for teaching staffErd for teaching staff
Erd for teaching staff
Mrsjalland
 
The entity relationship model
The entity relationship modelThe entity relationship model
The entity relationship model
Jane Garay
 
Entity Relationship Diagram presentation
Entity Relationship Diagram presentationEntity Relationship Diagram presentation
Entity Relationship Diagram presentation
Sopov Chan
 

Andere mochten auch (18)

Erd practice exercises
Erd practice exercisesErd practice exercises
Erd practice exercises
 
Entity Relationship Diagrams
Entity Relationship DiagramsEntity Relationship Diagrams
Entity Relationship Diagrams
 
Erd chapter 3
Erd chapter 3Erd chapter 3
Erd chapter 3
 
Presentation (ahmed abdulrahman)
Presentation (ahmed abdulrahman)Presentation (ahmed abdulrahman)
Presentation (ahmed abdulrahman)
 
Introduction to Business Modeling
Introduction to Business ModelingIntroduction to Business Modeling
Introduction to Business Modeling
 
ERD and tables of database
ERD and tables of databaseERD and tables of database
ERD and tables of database
 
Erd for teaching staff
Erd for teaching staffErd for teaching staff
Erd for teaching staff
 
The entity relationship model
The entity relationship modelThe entity relationship model
The entity relationship model
 
DATABASE MANAGEMENT SYSTEM FOR A START UP RECORD LABEL COMPANY - Capital records
DATABASE MANAGEMENT SYSTEM FOR A START UP RECORD LABEL COMPANY - Capital recordsDATABASE MANAGEMENT SYSTEM FOR A START UP RECORD LABEL COMPANY - Capital records
DATABASE MANAGEMENT SYSTEM FOR A START UP RECORD LABEL COMPANY - Capital records
 
Person ERD
Person ERDPerson ERD
Person ERD
 
Dissertation Proposal
Dissertation ProposalDissertation Proposal
Dissertation Proposal
 
Erd (info sys)
Erd (info sys)Erd (info sys)
Erd (info sys)
 
Umar Erd
Umar ErdUmar Erd
Umar Erd
 
Entity-Relationship Diagrams ERD
Entity-Relationship Diagrams ERDEntity-Relationship Diagrams ERD
Entity-Relationship Diagrams ERD
 
How to read a data model
How to read a data modelHow to read a data model
How to read a data model
 
Intro to Database Design
Intro to Database DesignIntro to Database Design
Intro to Database Design
 
Entity Relationship Diagram presentation
Entity Relationship Diagram presentationEntity Relationship Diagram presentation
Entity Relationship Diagram presentation
 
Database design & Normalization (1NF, 2NF, 3NF)
Database design & Normalization (1NF, 2NF, 3NF)Database design & Normalization (1NF, 2NF, 3NF)
Database design & Normalization (1NF, 2NF, 3NF)
 

Ähnlich wie Presentation database about ERD

Data modeling using the entity relationship model
Data modeling using the entity relationship modelData modeling using the entity relationship model
Data modeling using the entity relationship model
Jafar Nesargi
 
ECEG 4702-Class7-Entity-Relationship modeling.pptx
ECEG 4702-Class7-Entity-Relationship modeling.pptxECEG 4702-Class7-Entity-Relationship modeling.pptx
ECEG 4702-Class7-Entity-Relationship modeling.pptx
miftah88
 

Ähnlich wie Presentation database about ERD (20)

Jobs manager vs supervisor.pptx
Jobs manager vs supervisor.pptxJobs manager vs supervisor.pptx
Jobs manager vs supervisor.pptx
 
Ch06
Ch06Ch06
Ch06
 
Data modeling using the entity relationship model
Data modeling using the entity relationship modelData modeling using the entity relationship model
Data modeling using the entity relationship model
 
Chapter3
Chapter3Chapter3
Chapter3
 
Chapter3
Chapter3Chapter3
Chapter3
 
03 Ch3 Notes Revised
03 Ch3 Notes Revised03 Ch3 Notes Revised
03 Ch3 Notes Revised
 
ER model
ER modelER model
ER model
 
Revision ch 3
Revision ch 3Revision ch 3
Revision ch 3
 
Fundamentals of database system - Data Modeling Using the Entity-Relationshi...
Fundamentals of database system  - Data Modeling Using the Entity-Relationshi...Fundamentals of database system  - Data Modeling Using the Entity-Relationshi...
Fundamentals of database system - Data Modeling Using the Entity-Relationshi...
 
Chapter 2. Concepctual design -.pptx
Chapter 2. Concepctual design -.pptxChapter 2. Concepctual design -.pptx
Chapter 2. Concepctual design -.pptx
 
ERD with complete knowledge
ERD with complete knowledgeERD with complete knowledge
ERD with complete knowledge
 
3. Chapter Three.pdf
3. Chapter Three.pdf3. Chapter Three.pdf
3. Chapter Three.pdf
 
Enhanced ER(database)
Enhanced ER(database)Enhanced ER(database)
Enhanced ER(database)
 
ECEG 4702-Class7-Entity-Relationship modeling.pptx
ECEG 4702-Class7-Entity-Relationship modeling.pptxECEG 4702-Class7-Entity-Relationship modeling.pptx
ECEG 4702-Class7-Entity-Relationship modeling.pptx
 
02er
02er02er
02er
 
entityrelationshipmodel.pptx
entityrelationshipmodel.pptxentityrelationshipmodel.pptx
entityrelationshipmodel.pptx
 
Entity relationship-diagrams
Entity relationship-diagramsEntity relationship-diagrams
Entity relationship-diagrams
 
ERD(2).ppt
ERD(2).pptERD(2).ppt
ERD(2).ppt
 
DATA MODELING.pptx
DATA MODELING.pptxDATA MODELING.pptx
DATA MODELING.pptx
 
Database Management System
Database Management System Database Management System
Database Management System
 

Kürzlich hochgeladen

Call Girls In Nandini Layout ☎ 7737669865 🥵 Book Your One night Stand
Call Girls In Nandini Layout ☎ 7737669865 🥵 Book Your One night StandCall Girls In Nandini Layout ☎ 7737669865 🥵 Book Your One night Stand
Call Girls In Nandini Layout ☎ 7737669865 🥵 Book Your One night Stand
amitlee9823
 
Vip Mumbai Call Girls Marol Naka Call On 9920725232 With Body to body massage...
Vip Mumbai Call Girls Marol Naka Call On 9920725232 With Body to body massage...Vip Mumbai Call Girls Marol Naka Call On 9920725232 With Body to body massage...
Vip Mumbai Call Girls Marol Naka Call On 9920725232 With Body to body massage...
amitlee9823
 
Escorts Service Kumaraswamy Layout ☎ 7737669865☎ Book Your One night Stand (B...
Escorts Service Kumaraswamy Layout ☎ 7737669865☎ Book Your One night Stand (B...Escorts Service Kumaraswamy Layout ☎ 7737669865☎ Book Your One night Stand (B...
Escorts Service Kumaraswamy Layout ☎ 7737669865☎ Book Your One night Stand (B...
amitlee9823
 
➥🔝 7737669865 🔝▻ Bangalore Call-girls in Women Seeking Men 🔝Bangalore🔝 Esc...
➥🔝 7737669865 🔝▻ Bangalore Call-girls in Women Seeking Men  🔝Bangalore🔝   Esc...➥🔝 7737669865 🔝▻ Bangalore Call-girls in Women Seeking Men  🔝Bangalore🔝   Esc...
➥🔝 7737669865 🔝▻ Bangalore Call-girls in Women Seeking Men 🔝Bangalore🔝 Esc...
amitlee9823
 
Abortion pills in Jeddah | +966572737505 | Get Cytotec
Abortion pills in Jeddah | +966572737505 | Get CytotecAbortion pills in Jeddah | +966572737505 | Get Cytotec
Abortion pills in Jeddah | +966572737505 | Get Cytotec
Abortion pills in Riyadh +966572737505 get cytotec
 
Call Girls Hsr Layout Just Call 👗 7737669865 👗 Top Class Call Girl Service Ba...
Call Girls Hsr Layout Just Call 👗 7737669865 👗 Top Class Call Girl Service Ba...Call Girls Hsr Layout Just Call 👗 7737669865 👗 Top Class Call Girl Service Ba...
Call Girls Hsr Layout Just Call 👗 7737669865 👗 Top Class Call Girl Service Ba...
amitlee9823
 
Call Girls Begur Just Call 👗 7737669865 👗 Top Class Call Girl Service Bangalore
Call Girls Begur Just Call 👗 7737669865 👗 Top Class Call Girl Service BangaloreCall Girls Begur Just Call 👗 7737669865 👗 Top Class Call Girl Service Bangalore
Call Girls Begur Just Call 👗 7737669865 👗 Top Class Call Girl Service Bangalore
amitlee9823
 
Call Girls Bannerghatta Road Just Call 👗 7737669865 👗 Top Class Call Girl Ser...
Call Girls Bannerghatta Road Just Call 👗 7737669865 👗 Top Class Call Girl Ser...Call Girls Bannerghatta Road Just Call 👗 7737669865 👗 Top Class Call Girl Ser...
Call Girls Bannerghatta Road Just Call 👗 7737669865 👗 Top Class Call Girl Ser...
amitlee9823
 
Mg Road Call Girls Service: 🍓 7737669865 🍓 High Profile Model Escorts | Banga...
Mg Road Call Girls Service: 🍓 7737669865 🍓 High Profile Model Escorts | Banga...Mg Road Call Girls Service: 🍓 7737669865 🍓 High Profile Model Escorts | Banga...
Mg Road Call Girls Service: 🍓 7737669865 🍓 High Profile Model Escorts | Banga...
amitlee9823
 
Junnasandra Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore...
Junnasandra Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore...Junnasandra Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore...
Junnasandra Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore...
amitlee9823
 
Call Girls Indiranagar Just Call 👗 7737669865 👗 Top Class Call Girl Service B...
Call Girls Indiranagar Just Call 👗 7737669865 👗 Top Class Call Girl Service B...Call Girls Indiranagar Just Call 👗 7737669865 👗 Top Class Call Girl Service B...
Call Girls Indiranagar Just Call 👗 7737669865 👗 Top Class Call Girl Service B...
amitlee9823
 

Kürzlich hochgeladen (20)

Call Girls In Nandini Layout ☎ 7737669865 🥵 Book Your One night Stand
Call Girls In Nandini Layout ☎ 7737669865 🥵 Book Your One night StandCall Girls In Nandini Layout ☎ 7737669865 🥵 Book Your One night Stand
Call Girls In Nandini Layout ☎ 7737669865 🥵 Book Your One night Stand
 
DATA SUMMIT 24 Building Real-Time Pipelines With FLaNK
DATA SUMMIT 24  Building Real-Time Pipelines With FLaNKDATA SUMMIT 24  Building Real-Time Pipelines With FLaNK
DATA SUMMIT 24 Building Real-Time Pipelines With FLaNK
 
VIP Model Call Girls Hinjewadi ( Pune ) Call ON 8005736733 Starting From 5K t...
VIP Model Call Girls Hinjewadi ( Pune ) Call ON 8005736733 Starting From 5K t...VIP Model Call Girls Hinjewadi ( Pune ) Call ON 8005736733 Starting From 5K t...
VIP Model Call Girls Hinjewadi ( Pune ) Call ON 8005736733 Starting From 5K t...
 
Call me @ 9892124323 Cheap Rate Call Girls in Vashi with Real Photo 100% Secure
Call me @ 9892124323  Cheap Rate Call Girls in Vashi with Real Photo 100% SecureCall me @ 9892124323  Cheap Rate Call Girls in Vashi with Real Photo 100% Secure
Call me @ 9892124323 Cheap Rate Call Girls in Vashi with Real Photo 100% Secure
 
Vip Mumbai Call Girls Marol Naka Call On 9920725232 With Body to body massage...
Vip Mumbai Call Girls Marol Naka Call On 9920725232 With Body to body massage...Vip Mumbai Call Girls Marol Naka Call On 9920725232 With Body to body massage...
Vip Mumbai Call Girls Marol Naka Call On 9920725232 With Body to body massage...
 
Escorts Service Kumaraswamy Layout ☎ 7737669865☎ Book Your One night Stand (B...
Escorts Service Kumaraswamy Layout ☎ 7737669865☎ Book Your One night Stand (B...Escorts Service Kumaraswamy Layout ☎ 7737669865☎ Book Your One night Stand (B...
Escorts Service Kumaraswamy Layout ☎ 7737669865☎ Book Your One night Stand (B...
 
BDSM⚡Call Girls in Mandawali Delhi >༒8448380779 Escort Service
BDSM⚡Call Girls in Mandawali Delhi >༒8448380779 Escort ServiceBDSM⚡Call Girls in Mandawali Delhi >༒8448380779 Escort Service
BDSM⚡Call Girls in Mandawali Delhi >༒8448380779 Escort Service
 
Thane Call Girls 7091864438 Call Girls in Thane Escort service book now -
Thane Call Girls 7091864438 Call Girls in Thane Escort service book now -Thane Call Girls 7091864438 Call Girls in Thane Escort service book now -
Thane Call Girls 7091864438 Call Girls in Thane Escort service book now -
 
➥🔝 7737669865 🔝▻ Bangalore Call-girls in Women Seeking Men 🔝Bangalore🔝 Esc...
➥🔝 7737669865 🔝▻ Bangalore Call-girls in Women Seeking Men  🔝Bangalore🔝   Esc...➥🔝 7737669865 🔝▻ Bangalore Call-girls in Women Seeking Men  🔝Bangalore🔝   Esc...
➥🔝 7737669865 🔝▻ Bangalore Call-girls in Women Seeking Men 🔝Bangalore🔝 Esc...
 
Abortion pills in Jeddah | +966572737505 | Get Cytotec
Abortion pills in Jeddah | +966572737505 | Get CytotecAbortion pills in Jeddah | +966572737505 | Get Cytotec
Abortion pills in Jeddah | +966572737505 | Get Cytotec
 
Call Girls Hsr Layout Just Call 👗 7737669865 👗 Top Class Call Girl Service Ba...
Call Girls Hsr Layout Just Call 👗 7737669865 👗 Top Class Call Girl Service Ba...Call Girls Hsr Layout Just Call 👗 7737669865 👗 Top Class Call Girl Service Ba...
Call Girls Hsr Layout Just Call 👗 7737669865 👗 Top Class Call Girl Service Ba...
 
Call Girls Begur Just Call 👗 7737669865 👗 Top Class Call Girl Service Bangalore
Call Girls Begur Just Call 👗 7737669865 👗 Top Class Call Girl Service BangaloreCall Girls Begur Just Call 👗 7737669865 👗 Top Class Call Girl Service Bangalore
Call Girls Begur Just Call 👗 7737669865 👗 Top Class Call Girl Service Bangalore
 
Capstone Project on IBM Data Analytics Program
Capstone Project on IBM Data Analytics ProgramCapstone Project on IBM Data Analytics Program
Capstone Project on IBM Data Analytics Program
 
Call Girls Bannerghatta Road Just Call 👗 7737669865 👗 Top Class Call Girl Ser...
Call Girls Bannerghatta Road Just Call 👗 7737669865 👗 Top Class Call Girl Ser...Call Girls Bannerghatta Road Just Call 👗 7737669865 👗 Top Class Call Girl Ser...
Call Girls Bannerghatta Road Just Call 👗 7737669865 👗 Top Class Call Girl Ser...
 
Discover Why Less is More in B2B Research
Discover Why Less is More in B2B ResearchDiscover Why Less is More in B2B Research
Discover Why Less is More in B2B Research
 
Mg Road Call Girls Service: 🍓 7737669865 🍓 High Profile Model Escorts | Banga...
Mg Road Call Girls Service: 🍓 7737669865 🍓 High Profile Model Escorts | Banga...Mg Road Call Girls Service: 🍓 7737669865 🍓 High Profile Model Escorts | Banga...
Mg Road Call Girls Service: 🍓 7737669865 🍓 High Profile Model Escorts | Banga...
 
Junnasandra Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore...
Junnasandra Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore...Junnasandra Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore...
Junnasandra Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore...
 
hybrid Seed Production In Chilli & Capsicum.pptx
hybrid Seed Production In Chilli & Capsicum.pptxhybrid Seed Production In Chilli & Capsicum.pptx
hybrid Seed Production In Chilli & Capsicum.pptx
 
Call Girls Indiranagar Just Call 👗 7737669865 👗 Top Class Call Girl Service B...
Call Girls Indiranagar Just Call 👗 7737669865 👗 Top Class Call Girl Service B...Call Girls Indiranagar Just Call 👗 7737669865 👗 Top Class Call Girl Service B...
Call Girls Indiranagar Just Call 👗 7737669865 👗 Top Class Call Girl Service B...
 
5CL-ADBA,5cladba, Chinese supplier, safety is guaranteed
5CL-ADBA,5cladba, Chinese supplier, safety is guaranteed5CL-ADBA,5cladba, Chinese supplier, safety is guaranteed
5CL-ADBA,5cladba, Chinese supplier, safety is guaranteed
 

Presentation database about ERD