Hi,
I came across a query at
SQL Alias I can't understand. It says:
SELECT po.OrderID, p.LastName, p.FirstName
FROM Persons AS p,
Product_Orders AS po
WHERE p.LastName='Hansen' AND p.FirstName='Ola'
From what I see, there's no "JOIN" keyword used, but it's apparently going to operate on two separate tables. If it's going two retrieve data from "Product_Orders" tables, why isn't it mentioned after "WHERE" at all? So, how could "p.LastName=" and "p.FirstName" be related to "po.OrderID", how it knows what rows should be picked from "Product_Orders" table?