Subject Written using INNER JOIN syntax, how?
Author Robert DiFalco
How would the following query be rewritten using INNER JOIN syntax?

SELECT MAX( Eca.maxSeverity), SUM( eca.elementCount )
FROM Eca, Path, Link
WHERE Path.ancestorId = 8
AND Path.descendentId = Link.parentId
AND Link.childId = Eca.oid