По результатам понаставлю оценок.

Код: Выделить всё
SELECT * FROM Customers
where Country="Germany" OR Country="UK"
Код: Выделить всё
SELECT * FROM Customers
order by country
Код: Выделить всё
SELECT * FROM Products
where Price between 20 and 50
Код: Выделить всё
SELECT * FROM Products
where Price >= 20 AND Price <= 50
Код: Выделить всё
SELECT Products.ProductName
FROM Categories INNER JOIN Products ON Categories.CategoryID = Products.CategoryID
WHERE Categories.CategoryName = "Beverages"
Код: Выделить всё
SELECT Customers.CustomerName, OrderDetails.Quantity
FROM ((Orders Inner Join OrderDetails on Orders.OrderID = OrderDetails.OrderID) inner join customers on customers.CustomerID = Orders.CustomerID)
where Customers.Country = "Finland" and OrderDetails.Quantity > 20
Код: Выделить всё
SELECT DISTINCT Customers.CustomerName
FROM ((Orders Inner Join OrderDetails on Orders.OrderID = OrderDetails.OrderID) inner join customers on customers.CustomerID = Orders.CustomerID)
where Customers.Country = "UK" and OrderDetails.Quantity > 20