SlideShare una empresa de Scribd logo
1 de 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

Más contenido relacionado

La actualidad más candente

La actualidad más candente (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
 

Destacado

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 ModelingLaurence White
 
ERD and tables of database
ERD and tables of databaseERD and tables of database
ERD and tables of databasemuhammad bilal
 
Erd for teaching staff
Erd for teaching staffErd for teaching staff
Erd for teaching staffMrsjalland
 
The entity relationship model
The entity relationship modelThe entity relationship model
The entity relationship modelJane Garay
 
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 recordsUkam John Victor
 
Dissertation Proposal
Dissertation ProposalDissertation Proposal
Dissertation ProposalSara Stetson
 
Entity-Relationship Diagrams ERD
Entity-Relationship Diagrams ERDEntity-Relationship Diagrams ERD
Entity-Relationship Diagrams ERDtorp42
 
How to read a data model
How to read a data modelHow to read a data model
How to read a data modelsanksh
 
Intro to Database Design
Intro to Database DesignIntro to Database Design
Intro to Database DesignSondra Willhite
 
Entity Relationship Diagram presentation
Entity Relationship Diagram presentationEntity Relationship Diagram presentation
Entity Relationship Diagram presentationSopov Chan
 
Database design & Normalization (1NF, 2NF, 3NF)
Database design & Normalization (1NF, 2NF, 3NF)Database design & Normalization (1NF, 2NF, 3NF)
Database design & Normalization (1NF, 2NF, 3NF)Jargalsaikhan Alyeksandr
 

Destacado (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)
 

Similar a Presentation database about ERD

Jobs manager vs supervisor.pptx
Jobs manager vs supervisor.pptxJobs manager vs supervisor.pptx
Jobs manager vs supervisor.pptxprosofts1
 
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 modelJafar Nesargi
 
03 Ch3 Notes Revised
03 Ch3 Notes Revised03 Ch3 Notes Revised
03 Ch3 Notes Revisedguest6f408c
 
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...Mustafa Kamel Mohammadi
 
Chapter 2. Concepctual design -.pptx
Chapter 2. Concepctual design -.pptxChapter 2. Concepctual design -.pptx
Chapter 2. Concepctual design -.pptxsantosh96234
 
ERD with complete knowledge
ERD with complete knowledgeERD with complete knowledge
ERD with complete knowledgeAsma Rasool
 
3. Chapter Three.pdf
3. Chapter Three.pdf3. Chapter Three.pdf
3. Chapter Three.pdffikadumola
 
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.pptxmiftah88
 
entityrelationshipmodel.pptx
entityrelationshipmodel.pptxentityrelationshipmodel.pptx
entityrelationshipmodel.pptxThangamaniR3
 
Database Management System
Database Management System Database Management System
Database Management System FellowBuddy.com
 

Similar a 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
 

Último

Introduction-to-Machine-Learning (1).pptx
Introduction-to-Machine-Learning (1).pptxIntroduction-to-Machine-Learning (1).pptx
Introduction-to-Machine-Learning (1).pptxfirstjob4
 
Smarteg dropshipping via API with DroFx.pptx
Smarteg dropshipping via API with DroFx.pptxSmarteg dropshipping via API with DroFx.pptx
Smarteg dropshipping via API with DroFx.pptxolyaivanovalion
 
(PARI) Call Girls Wanowrie ( 7001035870 ) HI-Fi Pune Escorts Service
(PARI) Call Girls Wanowrie ( 7001035870 ) HI-Fi Pune Escorts Service(PARI) Call Girls Wanowrie ( 7001035870 ) HI-Fi Pune Escorts Service
(PARI) Call Girls Wanowrie ( 7001035870 ) HI-Fi Pune Escorts Serviceranjana rawat
 
April 2024 - Crypto Market Report's Analysis
April 2024 - Crypto Market Report's AnalysisApril 2024 - Crypto Market Report's Analysis
April 2024 - Crypto Market Report's Analysismanisha194592
 
代办国外大学文凭《原版美国UCLA文凭证书》加州大学洛杉矶分校毕业证制作成绩单修改
代办国外大学文凭《原版美国UCLA文凭证书》加州大学洛杉矶分校毕业证制作成绩单修改代办国外大学文凭《原版美国UCLA文凭证书》加州大学洛杉矶分校毕业证制作成绩单修改
代办国外大学文凭《原版美国UCLA文凭证书》加州大学洛杉矶分校毕业证制作成绩单修改atducpo
 
Al Barsha Escorts $#$ O565212860 $#$ Escort Service In Al Barsha
Al Barsha Escorts $#$ O565212860 $#$ Escort Service In Al BarshaAl Barsha Escorts $#$ O565212860 $#$ Escort Service In Al Barsha
Al Barsha Escorts $#$ O565212860 $#$ Escort Service In Al BarshaAroojKhan71
 
VIP Call Girls Service Miyapur Hyderabad Call +91-8250192130
VIP Call Girls Service Miyapur Hyderabad Call +91-8250192130VIP Call Girls Service Miyapur Hyderabad Call +91-8250192130
VIP Call Girls Service Miyapur Hyderabad Call +91-8250192130Suhani Kapoor
 
Generative AI on Enterprise Cloud with NiFi and Milvus
Generative AI on Enterprise Cloud with NiFi and MilvusGenerative AI on Enterprise Cloud with NiFi and Milvus
Generative AI on Enterprise Cloud with NiFi and MilvusTimothy Spann
 
꧁❤ Greater Noida Call Girls Delhi ❤꧂ 9711199171 ☎️ Hard And Sexy Vip Call
꧁❤ Greater Noida Call Girls Delhi ❤꧂ 9711199171 ☎️ Hard And Sexy Vip Call꧁❤ Greater Noida Call Girls Delhi ❤꧂ 9711199171 ☎️ Hard And Sexy Vip Call
꧁❤ Greater Noida Call Girls Delhi ❤꧂ 9711199171 ☎️ Hard And Sexy Vip Callshivangimorya083
 
Delhi Call Girls Punjabi Bagh 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
Delhi Call Girls Punjabi Bagh 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip CallDelhi Call Girls Punjabi Bagh 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
Delhi Call Girls Punjabi Bagh 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Callshivangimorya083
 
04242024_CCC TUG_Joins and Relationships
04242024_CCC TUG_Joins and Relationships04242024_CCC TUG_Joins and Relationships
04242024_CCC TUG_Joins and Relationshipsccctableauusergroup
 
BabyOno dropshipping via API with DroFx.pptx
BabyOno dropshipping via API with DroFx.pptxBabyOno dropshipping via API with DroFx.pptx
BabyOno dropshipping via API with DroFx.pptxolyaivanovalion
 
Halmar dropshipping via API with DroFx
Halmar  dropshipping  via API with DroFxHalmar  dropshipping  via API with DroFx
Halmar dropshipping via API with DroFxolyaivanovalion
 
Schema on read is obsolete. Welcome metaprogramming..pdf
Schema on read is obsolete. Welcome metaprogramming..pdfSchema on read is obsolete. Welcome metaprogramming..pdf
Schema on read is obsolete. Welcome metaprogramming..pdfLars Albertsson
 
B2 Creative Industry Response Evaluation.docx
B2 Creative Industry Response Evaluation.docxB2 Creative Industry Response Evaluation.docx
B2 Creative Industry Response Evaluation.docxStephen266013
 
BPAC WITH UFSBI GENERAL PRESENTATION 18_05_2017-1.pptx
BPAC WITH UFSBI GENERAL PRESENTATION 18_05_2017-1.pptxBPAC WITH UFSBI GENERAL PRESENTATION 18_05_2017-1.pptx
BPAC WITH UFSBI GENERAL PRESENTATION 18_05_2017-1.pptxMohammedJunaid861692
 
RA-11058_IRR-COMPRESS Do 198 series of 1998
RA-11058_IRR-COMPRESS Do 198 series of 1998RA-11058_IRR-COMPRESS Do 198 series of 1998
RA-11058_IRR-COMPRESS Do 198 series of 1998YohFuh
 
Mature dropshipping via API with DroFx.pptx
Mature dropshipping via API with DroFx.pptxMature dropshipping via API with DroFx.pptx
Mature dropshipping via API with DroFx.pptxolyaivanovalion
 
Data-Analysis for Chicago Crime Data 2023
Data-Analysis for Chicago Crime Data  2023Data-Analysis for Chicago Crime Data  2023
Data-Analysis for Chicago Crime Data 2023ymrp368
 

Último (20)

Introduction-to-Machine-Learning (1).pptx
Introduction-to-Machine-Learning (1).pptxIntroduction-to-Machine-Learning (1).pptx
Introduction-to-Machine-Learning (1).pptx
 
Smarteg dropshipping via API with DroFx.pptx
Smarteg dropshipping via API with DroFx.pptxSmarteg dropshipping via API with DroFx.pptx
Smarteg dropshipping via API with DroFx.pptx
 
(PARI) Call Girls Wanowrie ( 7001035870 ) HI-Fi Pune Escorts Service
(PARI) Call Girls Wanowrie ( 7001035870 ) HI-Fi Pune Escorts Service(PARI) Call Girls Wanowrie ( 7001035870 ) HI-Fi Pune Escorts Service
(PARI) Call Girls Wanowrie ( 7001035870 ) HI-Fi Pune Escorts Service
 
꧁❤ Aerocity Call Girls Service Aerocity Delhi ❤꧂ 9999965857 ☎️ Hard And Sexy ...
꧁❤ Aerocity Call Girls Service Aerocity Delhi ❤꧂ 9999965857 ☎️ Hard And Sexy ...꧁❤ Aerocity Call Girls Service Aerocity Delhi ❤꧂ 9999965857 ☎️ Hard And Sexy ...
꧁❤ Aerocity Call Girls Service Aerocity Delhi ❤꧂ 9999965857 ☎️ Hard And Sexy ...
 
April 2024 - Crypto Market Report's Analysis
April 2024 - Crypto Market Report's AnalysisApril 2024 - Crypto Market Report's Analysis
April 2024 - Crypto Market Report's Analysis
 
代办国外大学文凭《原版美国UCLA文凭证书》加州大学洛杉矶分校毕业证制作成绩单修改
代办国外大学文凭《原版美国UCLA文凭证书》加州大学洛杉矶分校毕业证制作成绩单修改代办国外大学文凭《原版美国UCLA文凭证书》加州大学洛杉矶分校毕业证制作成绩单修改
代办国外大学文凭《原版美国UCLA文凭证书》加州大学洛杉矶分校毕业证制作成绩单修改
 
Al Barsha Escorts $#$ O565212860 $#$ Escort Service In Al Barsha
Al Barsha Escorts $#$ O565212860 $#$ Escort Service In Al BarshaAl Barsha Escorts $#$ O565212860 $#$ Escort Service In Al Barsha
Al Barsha Escorts $#$ O565212860 $#$ Escort Service In Al Barsha
 
VIP Call Girls Service Miyapur Hyderabad Call +91-8250192130
VIP Call Girls Service Miyapur Hyderabad Call +91-8250192130VIP Call Girls Service Miyapur Hyderabad Call +91-8250192130
VIP Call Girls Service Miyapur Hyderabad Call +91-8250192130
 
Generative AI on Enterprise Cloud with NiFi and Milvus
Generative AI on Enterprise Cloud with NiFi and MilvusGenerative AI on Enterprise Cloud with NiFi and Milvus
Generative AI on Enterprise Cloud with NiFi and Milvus
 
꧁❤ Greater Noida Call Girls Delhi ❤꧂ 9711199171 ☎️ Hard And Sexy Vip Call
꧁❤ Greater Noida Call Girls Delhi ❤꧂ 9711199171 ☎️ Hard And Sexy Vip Call꧁❤ Greater Noida Call Girls Delhi ❤꧂ 9711199171 ☎️ Hard And Sexy Vip Call
꧁❤ Greater Noida Call Girls Delhi ❤꧂ 9711199171 ☎️ Hard And Sexy Vip Call
 
Delhi Call Girls Punjabi Bagh 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
Delhi Call Girls Punjabi Bagh 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip CallDelhi Call Girls Punjabi Bagh 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
Delhi Call Girls Punjabi Bagh 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
 
04242024_CCC TUG_Joins and Relationships
04242024_CCC TUG_Joins and Relationships04242024_CCC TUG_Joins and Relationships
04242024_CCC TUG_Joins and Relationships
 
BabyOno dropshipping via API with DroFx.pptx
BabyOno dropshipping via API with DroFx.pptxBabyOno dropshipping via API with DroFx.pptx
BabyOno dropshipping via API with DroFx.pptx
 
Halmar dropshipping via API with DroFx
Halmar  dropshipping  via API with DroFxHalmar  dropshipping  via API with DroFx
Halmar dropshipping via API with DroFx
 
Schema on read is obsolete. Welcome metaprogramming..pdf
Schema on read is obsolete. Welcome metaprogramming..pdfSchema on read is obsolete. Welcome metaprogramming..pdf
Schema on read is obsolete. Welcome metaprogramming..pdf
 
B2 Creative Industry Response Evaluation.docx
B2 Creative Industry Response Evaluation.docxB2 Creative Industry Response Evaluation.docx
B2 Creative Industry Response Evaluation.docx
 
BPAC WITH UFSBI GENERAL PRESENTATION 18_05_2017-1.pptx
BPAC WITH UFSBI GENERAL PRESENTATION 18_05_2017-1.pptxBPAC WITH UFSBI GENERAL PRESENTATION 18_05_2017-1.pptx
BPAC WITH UFSBI GENERAL PRESENTATION 18_05_2017-1.pptx
 
RA-11058_IRR-COMPRESS Do 198 series of 1998
RA-11058_IRR-COMPRESS Do 198 series of 1998RA-11058_IRR-COMPRESS Do 198 series of 1998
RA-11058_IRR-COMPRESS Do 198 series of 1998
 
Mature dropshipping via API with DroFx.pptx
Mature dropshipping via API with DroFx.pptxMature dropshipping via API with DroFx.pptx
Mature dropshipping via API with DroFx.pptx
 
Data-Analysis for Chicago Crime Data 2023
Data-Analysis for Chicago Crime Data  2023Data-Analysis for Chicago Crime Data  2023
Data-Analysis for Chicago Crime Data 2023
 

Presentation database about ERD