รบกวนขอคำชี้แนะ ด้วยนะครับ ต้องการกลับ แถวเป็นคอลัมน์ ของ ผลลัพธ์จาก pivot
ต้องขออภัยหากคำถามนี้ซ้ำ หาไม่เจอจริงๆ ครับ
โดยมี code ตาม นี้ นะ ครับ
TRANSFORM Sum(sales_order.quantity) AS SumOfquantity
SELECT Format([sales_order.Date],"dd") AS วันที่, Sum(sales_order.quantity) AS [ผลรวมของ quantity]
FROM sales_order
WHERE (((sales_order.product_id) In ('800','801S','801','802','803','804','804L','901','901S','902','205B')) And ((Format([Date],"dd/mm/yyyy")) Between Forms!SalesReports!startDate And Forms!SalesReports!enddate))
GROUP BY Format([sales_order.Date],"dd")
PIVOT sales_order.product_id In ('800','801S','801','802','803','804','804L','901','901S','902','205B');