Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

CIS250 Unit 2 Assignment 2 Directions Perform the tasks below by using the corre

ID: 3622133 • Letter: C

Question

CIS250 Unit 2 Assignment 2

Directions
Perform the tasks below by using the correct SQL statements. You must create the statements in Oracle by using the following steps (SQL > SQL commands > Enter Command). Once your command is error-free, copy and paste your statements into the assignment document. Upload this Word document for grading.

Scenario:

The suppliers want access to our database to enter their own prices. Although they are worried that other suppliers can see their prices, we have assured them that this is not possible.

Complete the following by creating the appropriate SQL statements:

2. Use the data dictionary to get the SELECT statement for the view you just created. Write that SELECT statement below (DO NOT Test this statement in Oracle):

6. What is a preventative delete?

7. Create a new table using the following column structure from the l_foods table: supplier_id, product_code, menu_item, description and price. Call the table l_foods_lt5. Populate the l_foods_lt5 table to include all the foods that cost less than $5.00.




Explanation / Answer

7.SQL> CREATE TABLE l_foods_lt5 AS (SELECT supplier_id, product_code, menu_item,description,price FROM l_foods where price< $5.00);