*
--select UnitPrice, ProductName from Products where UnitsInStock >100;
--select ProductName from Products where Discontinued = 1;
--select EmployeeID from Employees where YEAR(BirthDate) < 1950;
--select LastName, BirthDate from Employees where TitleOfCourtesy not like 'Dr.';
--select CompanyName from Suppliers where Fax is not null;
--select CompanyName, Phone from Customers where Country like 'Poland' or Country like 'France';
--select ProductName, UnitPrice from Products where Discontinued=0 and UnitsInStock>UnitsOnOrder;
--select ProductName from Products where not UnitPrice > 20 and not UnitsInStock!=0;
--select FirstName, LastName from Employees where MONTH(BirthDate) between 5 and 9;
--select OrderID from [Order Details] where Discount between 0.15 and 0.20;
--select BirthDate from Employees where FirstName in('Nancy', 'Andrew', 'Janet');
--select CompanyName, Address from Customers where City in('Berno', 'Graz', 'Warszawa');
--select LastName, City from Employees where Country in('UK');