Question: Please provide two screenshots 1 . List the item ID , description, and price for all items. 2 . List all rows and columns for

Please provide two screenshots
1. List the item ID, description, and price for all items.
2. List all rows and columns for the complete INVOICES table.
3. List the first and last names of customers with credit limits of $1,000 or more.4. List the order number for each order placed by customer number 125 on 11/15/2021.(Hint: If youneed help, use the discussion of the DATE data type in Figure 3-16 in Module 3.)
5 List the number and name of each customer represented by sales rep 10 or sales rep 15.
6. List the item ID and description of each item that is not in category HOR.
7. List the item ID, description, and number of units on hand for each item that has between 10 and 30units on hand, including both 10 and 30.
8. List the item ID, description, and on-hand value (units on hand * unit price) of each item in categoryCAT. (On-hand value is technically units on hand * cost, but there is no COST column in the ITEMtable.) Assign the name ON_HAND_VALUE to the computed column.
9. List the item ID, description, and on-hand value for each item where on-hand value is at least$1,500. Assign the name ON_HAND_VALUE to the computed column.
10. Use the IN operator to list the item ID and description of each item in category FSH or BRD.
11. Find the ID, first name, and last name of each customer whose first name begins with the letter S.
12. List all details about all items. Order the output by description.
13. List all details about all items. Order the output by item ID within location. (That is, order the outputby location and then by item ID.)
14. How many customers have balances that are more than their credit limits?
15. Find the total of the balances for all customers represented by sales rep 10 with balances that areless than their credit limits.
16. List the item ID, description, and on-hand value of each item whose number of units on hand ismore than the average number of units on hand for all items. (Hint: Use a subquery.)
17. What is the price of the least expensive item in the database?
18. What is the item ID, description, and price of the least expensive item in the database? ( Hint: Use asubquery.)
19. List the sum of the balances of all customers for each sales rep. Order and group the results by salesrep ID.
20. List the sum of the balances of all customers for each sales rep but restrict the output to those salesreps for which the sum is more than $150. Order the results by sales rep ID

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!