see attached

1 answer below »
Answered Same DayMay 01, 2021

Answer To: see attached

Ali Asgar answered on May 02 2021
135 Votes
SQLQuery.sql
--Excercise 3.3----------
SELECT
    CustomerName,
    Email
FROM
    Customers
WHERE
    
Country = 'UK'
ORDER BY
    CustomerName ASC;
    
--Excercise 3.4----------
SELECT
    ProductID,
    quantity,
    DeliveryDate
FROM
    Products
WHERE
    DeliveryDate BETWEEN '01-10-2016' AND '09-10-2016';
    
--Excercise 3.6----------    
SELECT
    FirstName,
    LastName
FROM
    Employees
WHERE
    Phone IS NULL;
--Excercise...
SOLUTION.PDF

Answer To This Question Is Available To Download

Related Questions & Answers

More Questions »

Submit New Assignment

Copy and Paste Your Assignment Here