Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Book Table has ISBN, TITLE, Author, Publisher. Subject_Code,Shelf_Location, Fiction as columns Using MySQL /*Query 1*/ /*Display ISBN, Title, and Subject_Code of books that have the

Book Table has ISBN, TITLE, Author, Publisher. Subject_Code,Shelf_Location, Fiction as columns

Using MySQL

/*Query 1*/ /*Display ISBN, Title, and Subject_Code of books that have the same subject code as the book 'The Art of Walt Disney'. The output should be sorted by title from a->z. This query must be solved by using a subquery. No hard coded values are allowed in the statement except the book title 'The Art of Walt Disney'.Should return 4 books*/

SELECT ISBN, Title, Subject_Code FROM Book Where Subject_Code IN (SELECT Subject_Code FROM book WHERE Title = 'The Art of Walt Disney') ORDER BY Title;

/*Query 2*/ /*Solve Query 1 again by using a table join.Should return 4 books*/

/*Query 3*/ /*Update the Shelf_Location to KD-2222 for books of a Subject_Code that has the least number of books. For example, if ART and PHL subjects each contains only two books and all other subjects have three or more books, then the Shelf_Location of four books of ART and PHL should be updated. Hint: subquery*/

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

Recommended Textbook for

DB2 11 The Ultimate Database For Cloud Analytics And Mobile

Authors: John Campbell, Chris Crone, Gareth Jones, Surekha Parekh, Jay Yothers

1st Edition

ISBN: 1583474013, 978-1583474013

More Books

Students also viewed these Databases questions

Question

What is the yield strength of type A36 steel?

Answered: 1 week ago

Question

c. What were the reasons for their move? Did they come voluntarily?

Answered: 1 week ago

Question

5. How do economic situations affect intergroup relations?

Answered: 1 week ago