是否有可能从 2 个表products
和products image
关系表中得到这样的结果......
我正在使用 php。我可以用 php 组织数据,但由于性能原因,我想使用 sql 以这种形式获取数据。我知道 sql 连接,但它提供了简单的数组数据。我需要数据作为数组中的数组。
Products
桌子:
id name
1 product1
2 product2
images
桌子:
product_id imageid
1 1
1 2
1 3
2 4
2 5
2 6
[0] => Array
(
[id] => 1
[images] => Array
(
[0] => 1
[1] => 2
[2] => 3
)
)
[1] => Array
(
[id] => 2
[images] => Array
(
[0] => 4
[1] => 5
[2] => 6
)
)