Question

Use the database below to answer the following question.
GENERAL SALES DATABASE:
SALESREP
SalesRepNo RepName HireDate
654 Jones 01/02/1999
734 Smith 02/03/2000
345 Chen 01/25/1998
434 Johnson 11/23/1998

CUSTOMER
CustNo CustName Balance SalesRepNo
9870 Winston 500 345
8590 Gonzales 350 434
7840 Harris 800 654
4870 Miles 100 345

Using the CUSTOMER.Balance column as the column providing the data, create a view to display the results of a computed column. Specifically, assume that all customers are required to maintain a minimum balance of 100, and use the view to display customer name and a number named BalanceOverMinimum that calculates (Balance - 100) for all customers in the GENERAL SALES DATABASE.

Answer

This answer is hidden. It contains 174 characters.