That's the question...please be nice in your answers.
A little background might be helpful. I find that everyone around me and most on this forum use the (LEFT) JOIN syntax for constructing queries with joins.
I, on the other hand, like to place all the tables in the FROM clause, connect them up in a logical order in the first few statements in the WHERE clause, using *= for LOJ, and then place any additional criteria last in the WHERE clause.
I find it easier to read because it "flows"...I see the tables, I see how they are connection (and I use a transitive flow for that...A to BC to BC to C, etc as much as possible.
Am I a dinosaur? Is this harder or easier to read?
I understand Oracle has problems with this approach, is that correct?
Comments?
TR
A little background might be helpful. I find that everyone around me and most on this forum use the (LEFT) JOIN syntax for constructing queries with joins.
I, on the other hand, like to place all the tables in the FROM clause, connect them up in a logical order in the first few statements in the WHERE clause, using *= for LOJ, and then place any additional criteria last in the WHERE clause.
I find it easier to read because it "flows"...I see the tables, I see how they are connection (and I use a transitive flow for that...A to BC to BC to C, etc as much as possible.
Am I a dinosaur? Is this harder or easier to read?
I understand Oracle has problems with this approach, is that correct?
Comments?
TR