The reason i think it might be for here is that when i run that sql query in the mysql command line (or any other utility i've tried) it doesn't display "tableX." it displays:
Code:
+--------+-------------+--------+-------------------+
| field1 | field2 | field1 | field2 |
+--------+-------------+--------+-------------------+
| 1 | something | 1 | something else |
+--------+-------------+--------+-------------------+
while it shoud display:
Code:
+-------------+-------------+-------------+-----------------+
|table1.field1|table1.field2|table2.field1| table2.field2 |
+-------------+-------------+-------------+-----------------+
| 1 | something | 1 | something else |
+-------------+-------------+-------------+-----------------+
or am i wrong? Is this normal?
Bookmarks