1. Why is it that EM sometimes changes "al.field" ("al" = alias) to "al .field" after I run a query? (This seems to happen mostly on subqueries/derived tables.)
2. Is there any functional difference between the following?SELECT e.LastName, d.Dept
FROM Employees e INNER JOIN
Departments d ON e.DeptID = d.ID
SELECT e.LastName, d.Dept
FROM Employees e INNER JOIN
Departments d ON d.ID = e.DeptID
Actually let me clarify - I know that both seem to work all the time; is there ever a time when the sequence of the JOIN criteria matters?
---------------------------------------------------------------
I'm the guy who's not afraid to ask the painfully stupid questions!