CREATE TABLE ARTISTS( artist_id CHAR(30), artist_name CHAR(30), artist_pop INT(5), PRIMARY KEY (artist_id)); CREATE TABLE TRACKS( track_id CHAR(30), track_name CHAR(30), duration INTL(10), tempo REAL, PRIMARY KEY (track_id)); CREATE TABLE USERS( user_id CHAR(30), user_name CHAR(30), age INT(5), nationality CHAR(30), num_track_listened INT(10), PRIMARY KEY (user_id)); CREATE TABLE RECORD( artist_id CHAR(30), track_id CHAR(30), PRIMARY KEY (artist_id, track_id), FOREIGN KEY (artist_id) REFERENCES ARTISTS, FOREIGN KEY (track_id) REFERENCES TRACKS); CREATE TABLE LISTEN( user_id CHAR(30), track_id CHAR(30), PRIMARY KEY (user_id, track_id), FOREIGN KEY (user_id) REFERENCES USERS, FOREIGN KEY (track_id) REFERENCES TRACKS); CREATE TABLE FOLLOW( user_id CHAR(30), artist_id CHAR(30), follow_date datetime, PRIMARY KEY (user_id, artist_id) FOREIGN KEY (user_id) REFERENCES USERS, FOREIGN KEY (artist_id) REFERENCES ARTISTS); According to the six table, write a single SQL query for each request below. Find the ids and names of those users who have not listened to any track recorded by the artist named ‘Adele’. Use “NOT EXISTS” to answer this query.

New Perspectives on HTML5, CSS3, and JavaScript
6th Edition
ISBN:9781305503922
Author:Patrick M. Carey
Publisher:Patrick M. Carey
Chapter6: Working With Tables And Columns: Creating A Program Schedule For A Radio Station
Section: Chapter Questions
Problem 8CP3
icon
Related questions
Question

CREATE TABLE ARTISTS(

artist_id CHAR(30),

artist_name CHAR(30),

artist_pop INT(5),

PRIMARY KEY (artist_id));

CREATE TABLE TRACKS(

track_id CHAR(30),

track_name CHAR(30),

duration INTL(10),

tempo REAL,

PRIMARY KEY (track_id));

CREATE TABLE USERS(

user_id CHAR(30),

user_name CHAR(30),

age INT(5),

nationality CHAR(30),

num_track_listened INT(10),

PRIMARY KEY (user_id));

CREATE TABLE RECORD(

artist_id CHAR(30),

track_id CHAR(30),

PRIMARY KEY (artist_id, track_id),

FOREIGN KEY (artist_id) REFERENCES ARTISTS,

FOREIGN KEY (track_id) REFERENCES TRACKS);

CREATE TABLE LISTEN(

user_id CHAR(30),

track_id CHAR(30),

PRIMARY KEY (user_id, track_id),

FOREIGN KEY (user_id) REFERENCES USERS,

FOREIGN KEY (track_id) REFERENCES TRACKS);

CREATE TABLE FOLLOW(

user_id CHAR(30),

artist_id CHAR(30),

follow_date datetime,

PRIMARY KEY (user_id, artist_id)

FOREIGN KEY (user_id) REFERENCES USERS,

FOREIGN KEY (artist_id) REFERENCES ARTISTS);

According to the six table, write a single SQL query for each request below.

  1. Find the ids and names of those users who have not listened to any track recorded by the artist named ‘Adele’. Use “NOT EXISTS” to answer this query.
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 2 steps

Blurred answer
Knowledge Booster
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
New Perspectives on HTML5, CSS3, and JavaScript
New Perspectives on HTML5, CSS3, and JavaScript
Computer Science
ISBN:
9781305503922
Author:
Patrick M. Carey
Publisher:
Cengage Learning
Np Ms Office 365/Excel 2016 I Ntermed
Np Ms Office 365/Excel 2016 I Ntermed
Computer Science
ISBN:
9781337508841
Author:
Carey
Publisher:
Cengage
COMPREHENSIVE MICROSOFT OFFICE 365 EXCE
COMPREHENSIVE MICROSOFT OFFICE 365 EXCE
Computer Science
ISBN:
9780357392676
Author:
FREUND, Steven
Publisher:
CENGAGE L
Oracle 12c: SQL
Oracle 12c: SQL
Computer Science
ISBN:
9781305251038
Author:
Joan Casteel
Publisher:
Cengage Learning