Find the album title, band name, format, and total length of all albums released since January 1, 2000. Order from longest to shortest. Try to return the format as the word "single" or "double" rather than just the store value "s" or "d". Try to get the total length to look like a reasonable time value rather than just a big number. Please use the same table names as below in the image.

Np Ms Office 365/Excel 2016 I Ntermed
1st Edition
ISBN:9781337508841
Author:Carey
Publisher:Carey
Chapter5: Working With Excel Tables, Pivottables, And Pivotcharts
Section: Chapter Questions
Problem 10RA
icon
Related questions
Question

Find the album title, band name, format, and total length of all albums released since January 1, 2000.

Order from longest to shortest.

Try to return the format as the word "single" or "double" rather than just the store value "s" or "d".

Try to get the total length to look like a reasonable time value rather than just a big number.

Please use the same table names as below in the image.

assignment8.sql x
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
/* Create all tables. Order matters due to foreign keys. */
CREATE TABLE p_artist (
id INT AUTO INCREMENT,
fname VARCHAR (30) NOT NULL,
1name VARCHAR (30),
dob DATE,
hometown VARCHAR (40),
gender CHAR (1),
PRIMARY KEY (id)
L) ENGINE = innodb;
CREATE TABLE p_band (1
id INT AUTO INCREMENT,
title VARCHAR (50) NOT NULL,
year_formed YEAR,
PRIMARY KEY (id)
-) ENGINE = innodb;
CREATE TABLE p member (
artist_id INT NOT NULL,
band_id INT NOT NULL,
pard
joined date DATE,
leave_date DATE,
FOREIGN KEY (artist_id) REFERENCES p_artist (id),
FOREIGN KEY (band_id) REFERENCES p_band (id)
-) ENGINE = innodb;
CREATE TABLE p_album (
id INT not null,
pub_year YEAR,
title VARCHAR (50),
publisher VARCHAR (50),
format CHAR (1),
band_id INT NOT NULL,
PRIMARY KEY (id),
FOREIGN KEY (band_id) REFERENCES p_band (id)
-) ENGINE = innodb;
CREATE TABLE p song (
album_id INT NOT NULL,
name VARCHAR(30) NOT NULL,
length TIME,
FOREIGN KEY (album_id) REFERENCES p_album (id)
-) ENGINE = innodb;
Transcribed Image Text:assignment8.sql x 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 /* Create all tables. Order matters due to foreign keys. */ CREATE TABLE p_artist ( id INT AUTO INCREMENT, fname VARCHAR (30) NOT NULL, 1name VARCHAR (30), dob DATE, hometown VARCHAR (40), gender CHAR (1), PRIMARY KEY (id) L) ENGINE = innodb; CREATE TABLE p_band (1 id INT AUTO INCREMENT, title VARCHAR (50) NOT NULL, year_formed YEAR, PRIMARY KEY (id) -) ENGINE = innodb; CREATE TABLE p member ( artist_id INT NOT NULL, band_id INT NOT NULL, pard joined date DATE, leave_date DATE, FOREIGN KEY (artist_id) REFERENCES p_artist (id), FOREIGN KEY (band_id) REFERENCES p_band (id) -) ENGINE = innodb; CREATE TABLE p_album ( id INT not null, pub_year YEAR, title VARCHAR (50), publisher VARCHAR (50), format CHAR (1), band_id INT NOT NULL, PRIMARY KEY (id), FOREIGN KEY (band_id) REFERENCES p_band (id) -) ENGINE = innodb; CREATE TABLE p song ( album_id INT NOT NULL, name VARCHAR(30) NOT NULL, length TIME, FOREIGN KEY (album_id) REFERENCES p_album (id) -) ENGINE = innodb;
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 2 steps

Blurred answer
Knowledge Booster
Multiple table
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
Np Ms Office 365/Excel 2016 I Ntermed
Np Ms Office 365/Excel 2016 I Ntermed
Computer Science
ISBN:
9781337508841
Author:
Carey
Publisher:
Cengage
Database Systems: Design, Implementation, & Manag…
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781285196145
Author:
Steven, Steven Morris, Carlos Coronel, Carlos, Coronel, Carlos; Morris, Carlos Coronel and Steven Morris, Carlos Coronel; Steven Morris, Steven Morris; Carlos Coronel
Publisher:
Cengage Learning
Database Systems: Design, Implementation, & Manag…
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781305627482
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
Oracle 12c: SQL
Oracle 12c: SQL
Computer Science
ISBN:
9781305251038
Author:
Joan Casteel
Publisher:
Cengage Learning
A Guide to SQL
A Guide to SQL
Computer Science
ISBN:
9781111527273
Author:
Philip J. Pratt
Publisher:
Course Technology Ptr