Answered You can hire a professional tutor to get the answer.
Write a SQL query that displays the name of each item , the item price , and the name of its corresponding vendor for items that are classified ( in...
Develop SQL queries to utilize in My SQL Workbench for the following scenario below
Tables:
1. Customer
-SSN
-firstname
-lastname
-phone
2. Item
-sku
-itemname
-itemprice
-vendor_VID
3. Order
-orderno
-date
-customer_ssn
4. Order_Item
-item_sku
-order_sku
5. Vendor
-vid
-vendorname
-vendorphone
-vendoremail
-vendorsize
Question 1
Write a SQL query that displays the name of each item , the item price , and thename of its corresponding vendor for items that are classified ( in their name ) as"white " or have " raw" ingredients . Order ascending by item name .