Hi All,
I run
SELECT db1.table1.*, table2.f1, table2.f2, table3.f3
FROM table1, table2
LEFT JOIN table3
ON t1_fk = t3_pk
the query returns an error that t1_fk does'nt exist.
If i revert table1 and table2 order like below :
SELECT db1.table1.*, table2.f1, table2.f2, table3.f3
FROM table2, table1
LEFT JOIN table3
ON t1_fk = t3_pk
The query works fine.
t1_fk is a field of table1 and t3_pk a filed of table3.
Is the order of transcription generally important in FROM clause ? Is it dependant of a version, or a parameter in DB ?
Thanks
I run
SELECT db1.table1.*, table2.f1, table2.f2, table3.f3
FROM table1, table2
LEFT JOIN table3
ON t1_fk = t3_pk
the query returns an error that t1_fk does'nt exist.
If i revert table1 and table2 order like below :
SELECT db1.table1.*, table2.f1, table2.f2, table3.f3
FROM table2, table1
LEFT JOIN table3
ON t1_fk = t3_pk
The query works fine.
t1_fk is a field of table1 and t3_pk a filed of table3.
Is the order of transcription generally important in FROM clause ? Is it dependant of a version, or a parameter in DB ?
Thanks