-1
設置:查詢未返回所有行
create table product_stock(product_id integer, qty integer, branch_id integer);
create table product(product_id integer, product_name varchar(255));
insert into product(product_id, product_name)
values(1, 'Apsana White DX Pencil');
insert into product(product_id, product_name)
values(2, 'Diamond Glass Marking Pencil');
insert into product(product_id, product_name)
values(3, 'Apsana Black Pencil');
insert into product_stock(product_id, qty, branch_id)
values(1, 100, 1);
insert into product_stock(product_id, qty, branch_id)
values(1, 50, 2);
insert into product_stock(product_id, qty, branch_id)
values(2, 80, 1);
我的查詢:
SELECT IFNULL(SUM(s.qty),0) AS stock,
product_name
FROM product_stock s
RIGHT JOIN product p ON s.product_id=p.product_id
WHERE branch_id=1
GROUP BY product_name
ORDER BY product_name;
回報:
+-------+-------------------------------+
| stock | product_name |
+-------+-------------------------------+
| 100 | Apsana White DX Pencil |
| 80 | Diamond Glass Marking Pencil |
+-------+-------------------------------+
1 row in set (0.00 sec)
但我想有以下結果:
+-------+------------------------------+
| stock | product_name |
+-------+------------------------------+
| 0 | Apsana Black Pencil |
| 100 | Apsana White DX Pencil |
| 80 | Diamond Glass Marking Pencil |
+-------+------------------------------+
爲了得到這個結果我應該運行哪些mysql查詢?
嘗試使用左連接! – halocursed 2009-10-07 09:08:36
@Tareq這裏看起來和你之前的問題非常相似:http://stackoverflow.com/questions/1530021/query-returns-too-few-rows – 2009-10-07 09:08:50
朋友,儘管它很相似,但結果卻不同。如果我編輯以前的問題,我無法得到答案。所以,我必須添加另一個。謝謝。 – Tareq 2009-10-07 09:10:46