I have this elementary query:
SELECT d.description, o.code FROM order_positions AS o
LEFT JOIN article_descriptions AS d ON (o.article_id = d.article_id)
WHERE o.order_id = 1
and I'm using MDB2
from PEAR
to execute it and read the return values.
But somehow the result array always contains fields from the order_positions
table only!, i.e. the result array looks like this
row[code] = 'abc123'
while I want it to look like this
row[description] = 'my description'
row[code] = 'abc123'
I already tried the following:
- Vary the order of the fields, i.e.
code
first, thendescription
. - Vary the order of the joined tables.
- Used full table names instead of aliases.
- Used the "MySQL join" instead (
SELECT FROM table1, table2 WHERE table1.id = table2.id
) - Used aliases with and without
AS
.
Some other facts:
- Executing this query in MySQL Query Browser works fine, all fields are returned.
- The
order_positions
table seems to be preferred, no matter what. When joining with additional tables I still only get fields from this table.