Biology Forums - Study Force

Other Fields Homework Help Management Topic started by: NorrisBBQ on Jan 31, 2018



Title: Based on the code above, list the number, name, and balance of all customers with balances greater ...
Post by: NorrisBBQ on Jan 31, 2018
Based on the code above, list the number, name, and balance of all customers with balances greater than or equal to 2,000 and less than or equal to 5,000.
 a. SELECT CustomerNum, CustomerName, Balance FROM Customer WHERE Balance BETWEEN 2000 AND 5000 ;
  b. SELECT CustomerNum, CustomerName, Balance FROM Customer WHERE Balance > 2000 ;
 c. SELECT CustomerName, Balance FROM Customer WHERE Balance BETWEEN 2000 AND 5000 ;
 d. SELECT CustomerNum, CustomerName FROM Customer WHERE Balance BETWEEN 2000 AND 5000 ;


Title: Based on the code above, list the number, name, and balance of all customers with balances greater ...
Post by: PinkFlower on Jan 31, 2018
Content hidden


Title: Based on the code above, list the number, name, and balance of all customers with balances greater ...
Post by: NorrisBBQ on Jan 31, 2018
Above and beyond my expectations for this site