I have all of my queries listed here, grouped by task:
https://drive.google.com/open?id=0B5hBlRd1P7vEbXF6azltbXBHU0E
https://drive.google.com/open?id=0B5hBlRd1P7vEbXF6azltbXBHU0E
- select upper(ItemDescription) from Products;
- select CustomerID, substring(CustomerID, 1, 5) from Customers;
- select lower(CustomerID), upper(substring(FirstName, 1,2)), upper(substring(LastName, 1,3)) from Customers;


