Summer Lewis

Use single-row functions in query

Task 3

  • November 3, 2016 at 10:14 AM
  • Visible to public
I have all of my queries listed here, grouped by task:
https://drive.google.com/open?id=0B5hBlRd1P7vEbXF6azltbXBHU0E
  1. select upper(ItemDescription) from Products;
  2. select CustomerID, substring(CustomerID, 1, 5) from Customers;
  3. select lower(CustomerID), upper(substring(FirstName, 1,2)), upper(substring(LastName, 1,3)) from Customers;