0% found this document useful (0 votes)
7 views3 pages

ERD5

The document outlines a database schema consisting of entities and their attributes related to pet products, manufacturers, customers, transactions, and shipments. Key entities include Product, Animal, Manufacturer, and Customer, with various associative entities linking them. Each entity has specific attributes that define its properties and relationships within the database structure.

Uploaded by

NAVEEN KUMAR.N
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
7 views3 pages

ERD5

The document outlines a database schema consisting of entities and their attributes related to pet products, manufacturers, customers, transactions, and shipments. Key entities include Product, Animal, Manufacturer, and Customer, with various associative entities linking them. Each entity has specific attributes that define its properties and relationships within the database structure.

Uploaded by

NAVEEN KUMAR.N
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 3

```plaintext

Entities and Attributes:

Left Column:

1. **Product**

- ProductID (PK)

- Name

- ManufacturerID (FK)

- Category (Pet Food, Toy, Apparel)

2. **PetFood**

- ProductID (PK, FK)

- Weight

- Flavor

- TargetHealthCondition

3. **PetToy**

- ProductID (PK, FK)

- Material

- Durability

4. **PetApparel**

- ProductID (PK, FK)

- Color

- Size

- CareInstructions

5. **Animal**

- AnimalID (PK)

- Name
- Species

6. **ProductAnimal** (Associative Entity)

- ProductID (PK, FK)

- AnimalID (PK, FK)

Right Column:

7. **Manufacturer**

- ManufacturerID (PK)

- Name

- ContactInfo

8. **Customer**

- CustomerID (PK)

- Name

- Email

9. **Transaction**

- TransactionID (PK)

- CustomerID (FK)

- TransactionDate

10. **TransactionProduct** (Associative Entity)

- TransactionID (PK, FK)

- ProductID (PK, FK)

- Quantity

11. **Location**

- LocationID (PK)

- Name
- ZipCode

12. **Shipment**

- ShipmentID (PK)

- OriginLocationID (FK)

- DestinationLocationID (FK)

13. **ShipmentProduct** (Associative Entity)

- ShipmentID (PK, FK)

- ProductID (PK, FK)

- Quantity

```

You might also like