我在解決此問題時遇到問題。請幫忙。查詢問題 - 結果不正確
我有一個名爲Product_Information的表。我想要統計類別和子類別中的產品數量。
這是表
Product_Id - Product_Title - Product_Sub_Category - Product_Category
1 ----------------abc------------------XYX------------------X
2 ----------------def------------------XYX------------------Z
3 ----------------ghi------------------XYX------------------X
4 ----------------jkl------------------XYM------------------Z
,我希望得到的結果是一樣
result
------
Product_Category-Product_Sub_Category-count(Product_Id)
X--------------------XYX-------------------------2
Z--------------------XYX-------------------------1
Z--------------------XYM-------------------------1
(對不起,我在一個糟糕的方式呈現信息)
我用下面的查詢:
Select
Product_Category,
Product_Sub_Category,
count(`Product_Id`)
from product_information
group by
Product_Category
但它給了我錯誤的結果。
你可以編輯你的問題,並提出更好的? – Kangkan 2010-03-03 07:28:07
具體而言,你可以把你的表和查詢放在一個代碼塊中。 – 2010-03-03 07:29:31
你不需要按Product_Category,Product_Sub_Category進行分組,只能在你的問題的代碼中按照Product_Category進行分組。 – 2010-03-03 13:29:34