Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Translate the following image into relations. Write the SQL statements to create those relations. Write English explanations of anything in the ER diagram that is
Translate the following image into relations. Write the SQL statements to create those relations. Write English explanations of anything in the ER diagram that is not captured in your SQL Assume all keys are data type 'integer' and all other fields are data type 'date'.
Let me know if the diagram is too small and you want a bigger version of it
Suppose a database has the following three relations.
ArtItem aid: integer, title: string, weightPnd: integer, type: string, pricePaid: integer, creator: integer
ExhibitsIn artID: integer, exhibitID: integer, insuranceCost: integer, deliveryDate: date, homeMuseum: integer
Exhibition eID: integer, title: string, curatorName: string, specialFee: integer
Artist personID: integer, lastname: string, firstname: string, birthyear: integer, birthregion: string, bio: string
Regions regionname: string, latitude: string, longitude: string, sizeSqMi: integer, climate: string
The "bit" data type stores or False or true. Booleans.
"exhibitID" in ExhibitsIn is a foreign key referencing "eid" in Exhibition.
"artID" in ExhibitsIn is a foreign key referencing "aid" in ArtItem. The art item weights are measured in pounds.
"creator" in ArtItem is a foreign key referencing "personID" in Artist. city, like New York City.
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started