Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Would someone help me with this assignment? Thanks. You will use the Northwind database for this and all other SQL assignments going forward. 1. List
Would someone help me with this assignment? Thanks.
You will use the Northwind database for this and all other SQL assignments going forward. 1. List the complete customers table 2. List all products. Sort by unitPrice then by productname 3. Show the ProductID, ProductName. UnitPrice, UnitsInStock and UnitsOnOrder for all products that have been discontinued 4. List the customerId, the CompanyName and the first 8 characters in the company name using the customer table. 5. List the CustomerId and freight charges for the customers with the 10 largest freight charges 6. List the CustomerID and CompanyName for all Customers that contain 'Market' in their name. 7. Northwind has finally decided to give all employees an using the customer table charges in their name email address. The domain name will be northwind.com. Create a list of employee first and last names and email addresses in the format of first initial.Lastname@northwind.com. (Note the period between first initial and last name) Their ISP requires all email address to be submitted in lowercase Sort by last name in Ascending order. 8. List all customers who live in the following countries: France, Germany, USA or UK Use the IN Keyword. 9. List the largest 5 percent of freight charges. 10. The employee table Notes column contains a great deal of information concerning each employee including the languages they speak. Northwind needs someone who speaks German Notes of any employee with German in the notes to represent the company at a meeting. List the LastName, HomePhone and Notes of any employee with German in the notes. 11. List all orders with an order date in July 2014. Use the Between Keyword 12. List all orders with an order date in July 2014. DO NOT use the between Keyword 13. List all orders with no shipped date 14. List the customer IDs from the orders table. List each customerID only once. 15. List the customer Id, city, region and postal code for all customers. Sort by city, then by customer ID
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started