This might be a very simple question, but am just curious about it.
Are these queries both representations of equi join?
I find that both returns the same result.
Query1:
SELECT C.* FROM [Case] A, [Event] B, Notice C
WHERE A.CaseID = B.CaseID
AND B.EventID = C.EventID
Query2:
SELECT C.* FROM [Case] A
join [Event] B on A.CaseID = B.CaseID
join Notice C on B.EventID = C.EventID
Please clarify.