Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Song(title, genreCode, cDate) Composer(name, DOB) Writes(composerName, songTitle) Performance (perfName, songTitle, length, perfDate, recorded) Here are the SQL commands used to create the tables, above, mutatis

image text in transcribedimage text in transcribedimage text in transcribed

Song(title, genreCode, cDate) Composer(name, DOB) Writes(composerName, songTitle) Performance (perfName, songTitle, length, perfDate, recorded) Here are the SQL commands used to create the tables, above, mutatis mutandis from before (note: 'T" stands for TRUE and 'F' stands for FALSE) CREATE TABLE Song ( title VARCHAR2(255) PRIMARY KEY, genreCode CHAR (4) cDate DATE /* the date of composition (writing) */ CREATE TABLE Composer ( name VARCHAR2 (50) PRIMARY KEY DOB DATE /*the song writer's birth date */ CREATE TABLE Writes ( composerName VARCHAR2 (50) REFERENCES Composer (name), songTitle VARCHAR2 (255) REFERENCES Song(title) CREATE TABLE Performance ( perfName songTitle length perfDate recorded PRIMARY KEY (songTitle, perfDate) VARCHAR2 (50) VARCHAR2 (255) REFERENCES Song(title), INTEGER CHECK (length > 0), DATE, CHAR(1) CHECK (recorded in ('T','F','?')), /* in seconds *,/

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Students also viewed these Databases questions