1
我需要的輸出是這樣的:MySQL的一個月明智的報告
Month -->| Pre_Mnth2 | Pre_Mnth1 | current_Month_ Name
Product A | 3387 | 87985 | 2338
Product B | 6386 | 67983 | 6374
Product C | 3880 | 76988 | 9378
...
所有需要的數據是唯一的單表。
列如下:
id | companycode | merchantcode| pdtname | qty | value | invdate |
任何人可以幫助我用PHP MySQL查詢代碼?
我當前的代碼返回數據,當月僅
SELECT `pdtname`, `qty`, `value`, sum(`qty`), sum(`value`)
FROM `ist`
WHERE merchantcode = $q AND companycode = $companycode
AND MONTH(invdate) = $currentdate[mon]
GROUP BY `pdtname`
這裏變量$q
和$companycode
從用戶的會議上作出。
你需要每個月在結果一個單獨的列? – Nikhil