SHOW:
|
|
- or go back to the newest paste.
| 1 | - | use Northwind; |
| 1 | + | select Products.ProductID, Products.ProductName from Orders, [Order Details],Products where |
| 2 | - | |
| 2 | + | Orders.ShipCountry = 'Germany' AND Orders.OrderID = [Order Details].OrderID AND |
| 3 | - | select distinct Employees.EmployeeID, Employees.LastName, Categories.CategoryName |
| 3 | + | [Order Details].ProductID = Products.ProductID |