我有三个链接表 - order_tab 包含订单, autosorder_tab 连接另外两个 auto_tab ,其中包含商店中的所有商品。
一个订单可以包含任意数量的汽车。
CREATE TABLE order_tab
(`id` int, `_phone` varchar(10), `_email` varchar(9), `_date` varchar(10))
;
INSERT INTO order_tab
(`id`, `_phone`, `_email`, `_date`)
VALUES
(1, '111-111111', 'ok@ok.com', '2013-08-19')
;
CREATE TABLE auto_tab
(`id` int, `us_id` int, `str_1` varchar(3), `str_2` varchar(8))
;
INSERT INTO auto_tab
(`id`, `us_id`, `str_1`, `str_2`)
VALUES
(2, 0, 'BMW', '530i E60'),
(6, 0, 'BMW', '530i')
;
CREATE TABLE autosorder_tab
(`id` int, `au_id` int, `or_id` int, `hours` int, `price` decimal(19,2))
;
INSERT INTO autosorder_tab
(`id`, `au_id`, `or_id`, `hours`, `price`)
VALUES
(1, 2, 1, 3, 2700),
(2, 6, 1, 2, 3500)
order_tab id - 是主要的。 order_tab 中来自 autosorder_tab 的 or_id id 。 au_id 是来自 auto_tab 的身份证件
如何为每个订单中的所有车辆选择所有订单?
答案 0 :(得分:3)
如果我理解正确,请使用JOIN
SELECT o.*, a.*
FROM autosorder_tab ao JOIN order_tab o
ON ao.or_id = o.id JOIN auto_tab a
ON ao.au_id = a.id
ORDER BY o.id, a.id
这是 SQLFiddle 演示
更新如果您想按顺序对信息进行分组,请使用GROUP BY
和相应的汇总功能。对于您要使用的汽车名称GROUP_CONCAT()
SELECT o.id, o._date,
GROUP_CONCAT(CONCAT(a.str_1, ' ', a.str_2)
ORDER BY a.str_1, a.str_2
SEPARATOR ',') autos,
SUM(hours) hours,
...
FROM autosorder_tab ao JOIN order_tab o
ON ao.or_id = o.id JOIN auto_tab a
ON ao.au_id = a.id
GROUP BY o.id
更改分隔符使用SEPARATOR
子句。或者默认情况下使用逗号,然后在客户端代码中迭代结果集时,根据表示规则更改它。
这是 SQLFiddle 演示
答案 1 :(得分:1)
应该如下。请尝试..
SELECTED order_tab
所有行。
然后按订单ID降序加入autosorder_tab
,auto_tab
和ORDERED。
SELECT * FROM order_tab
INNER JOIN autosorder_tab ON order_tab.id = autosorder_tab.or_id
INNER JOIN auto_tab ON auto_tab.id = autosorder_tab.au_id
ORDER BY order_tab.id DESC