6. An art museum owns a large volume of works of art. Each work of art is described by an item code (identifier), title, type, and size; size is further composed of height, width, and weight. A work of art is developed by an artist, but the artist for some works is unknown. An artist is described by an artist ID (identifier), name, date of birth, and date of death (which is null for still living artists). Only data about artists for works currently owned by the museum are kept in the database. At any point in time, a work of art is either on display at the museum, held in storage, away from the museum as part of a traveling show, or on loan to another gallery. If on display at the museum, a work of art is also described by its location within the museum. A traveling show is described by a show ID (identifier), the city in which the show is currently appearing, and the start and end dates of the show. Many of the museum works may be part of a given show, and only active shows with at least one museum work of art need be represented in the database. Finally, another gallery is described by a gallery ID (identifier), name, and city. The museum wants to retain a complete history of loaning a work of art to other galleries, and each time a work is loaned, the museum wants to know the date the work was loaned and the date it was returned.As you develop the ERD for this problem, follow good data naming guidelines.

Respuesta :

Answer:

Answer:

Finding entities in the given question:

1. Art

2. Artist

3. Museum

4. Location

5.Travelling

6.Gallery

Finding attributes of above entities:

1. Art (item ID, title, type, size). Here size further composed of height, width, and weight.

2. Artist (artist ID, name, date of birth, date of death, nationality)

3.Travelling (show ID, start date, end date)

4. Gallery (gallery ID, name, city)

Finding relationship between the entities:

1. Developed

2.Display

3. Part

4. Loan

Explanation:

In the below attached diagram, the primary keys are listed as, “Item ID”, “Artist ID”, “Show ID”, and “Gallery ID”.

Ver imagen abidhussain7972
Lanuel

You should create the entity relationship diagram (ERD) by using a software such as Lucidchart with the three (3) key concepts included.

What is an ERD?

ERD is an acronym for entity relationship diagram and it can be defined as a structural diagram which is used in database design to model and graphically represent the relationship of entity sets that are stored in a relational database.

In database management system (DBMS), ERDs are used to explain the logical structure that are associated with relational databases. Also, they are generally created based on three (3) key concepts and these include the following:

  • Entities: these are museum, art, artist, location, gallery and travelling.
  • Attributes: these are name, date of birth, type, title, show ID, gallery ID, start date, end date, city, etc.
  • Relationships: loan, display, part, and developed.

Read more on ERD here: https://brainly.com/question/11530854

Ver imagen Lanuel