in reply to Triple joins in SQL::Statement
Why do you hide every single line of code of you experiments from us? Do you expect us to repeat every bit of your work in order to extend beyond where you got? By sharing your work so far, you make it easier for somebody to take the next step while also making your question much more interesting.
You might also point to the specific parts of SQL::Statement::Syntax that supported your conclusion. For example:
- from clause ::=
table1 [, table2, ... tableN] | table1 NATURAL [join_type] JOIN table2 | table1 [join_type] table2 USING (col1,col2, ... colN) | table1 [join_type] JOIN table2 ON table1.colA = table2.colB
The ", table2, ... tableN" seems to quite clearly contradict only supporting joining between two tables. The other formats don't seem to support more than a pair of tables, though.
- tye
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Triple joins in SQL::Statement (info)
by SilasTheMonk (Chaplain) on Oct 15, 2009 at 10:31 UTC |