好吧,我解释的最好方法是举个例子
Table 1
ID | name | class
-------------------------
1 | first name | a
2 | second name | b
Table 2
ID | name_id | meta_key | meta_value |
-------------------------------------------------------
1 | 1 | image | someImage.jpg |
2 | 1 | description | very long description |
3 | 2 | image | someImage_2.jpg |
4 | 2 | description | very long description 2 |
我正在尝试从表 1 中选择名称和类,以及表 2 中与name_id
ID 相同的所有记录(在表 1 中)。
这是我现在的查询:
SELECT
table1.name,
table1.class,
table2.name_id,
table2.meta_key,
table2.meta_value
FROM
table1
LEFT JOIN
table2 ON ( table1.ID = table2.name_id )
WHERE
table1.ID = '2'
这有效并返回一个数组,其元素与具有 name_id = 2 的表 2 条目一样多
有没有办法返回一个数组,其中 1 的结果来自第一个表,另一个数组的结果来自第二个表?
更新:理想的结果将是: $result['table1'][0] = array('name' => 'second name', 'class' => 'b')
$result['table2'][0] = array('name_id' => 2,
'meta_key' => 'image',
'meta_value' => 'someImage_2.jpg')
$result['table2'][1] = array('name_id' => 2,
'meta_key' => 'description',
'meta_value' => 'very long description 2')
希望这是有道理的。