Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
0% found this document useful (0 votes)
15 views

Assignment 2 SQL

Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
15 views

Assignment 2 SQL

Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 1

Assignment 2

1- Select * from Shippers


2- Select CategoryName ,Description from Categories
3- Select FirstName, LastName, HireDate,from employees where not Title of
Sales = null
4- Select FirstName, LastName, HireDate,from employees where Title of Sales
! = null and city=” United States”
5- Select * from Order where EmployeeID=5
6- Select SupplierID, ContactName, ContactTitle from Supplier where not
ContactTitle=”Marketing Manager”
7- Select ProductID, ProductName from products where ProductName like
“%queso%”
8- Select OrderID, CustomerID, ShipCountry from Orders where
ShipCountry=”France” or ShipCountry=” Belgium”
9- Select OrderID, CustomerID, ShipCountry from Orders where ShipCountry
in(“Brazil”, ”Mexico”, “Argentina”,” Venezuela”)
10- Select FirstName, LastName, Title, BirthDate from Employees order by
BirthDate Asc

You might also like