Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Create a table UserChoice(p#, price) to store information about products (number and price) selected by a user. Leave the table UserChoice empty when first created.

Create a table UserChoice(p#, price) to store information about products (number and price) selected by a user. Leave the table UserChoice empty when first created.


Implement a stored PL/SQL procedure FindProducts(category, keyword) that finds all products categorized by the input parameter category and described by the input parameter keyword. For example, Find Products('book', 'database') will find all books that are described or related to 'database'. The procedure is to store the numbers and prices of all selected products in UserChoice table. Consider the following categories of products - book, video and cdrom when you test your procedure. 


To test your procedure, 


(i) implement SQL script that displays the contents of empty UserChoice table, 


(ii) execute CREATE OR REPLACE PROCEDURE statement to store Find Products in a data dictionary, and 


(iii) execute a stored procedure Find Products again to display the contents of nonempty UserChoice table.

Step by Step Solution

3.55 Rating (165 Votes )

There are 3 Steps involved in it

Step: 1

Create UserChoice table CREATE TABLE UserChoice p INT price DECIMAL102 Implement stored PLSQL pr... 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

Systems Analysis And Design

Authors: Alan Dennis, Barbara Wixom, Roberta M. Roth

7th Edition

1119496489, 978-1119496489

More Books

Students also viewed these Databases questions

Question

What background experience do you have?

Answered: 1 week ago

Question

Define Administration and Management

Answered: 1 week ago

Question

Define organisational structure

Answered: 1 week ago

Question

Which phase in the SDLC is the most important?

Answered: 1 week ago