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