Magento 查詢訂單 和 該筆總的qty

2021-07-09 01:42:28 字數 913 閱讀 1810

select main_table.increment_id, main_table.created_at,main_table.base_grand_total,main_table.`status`,

customer_table.email,

sum(qty_ordered) as total_qty_ordered

from sales_flat_order_grid as main_table

left join customer_entity as customer_table on main_table.customer_id = customer_table.entity_id

left join sales_flat_order_item as item_table on item_table.order_id= main_table.entity_id

where item_table.product_type='******' #簡單型別產品(如果不知道會包含可配置產品,這樣就和magento後台展示的不一致了)

and main_table.created_at >= '2015-03-16' #時間範圍

and main_table.created_at < '2015-12-18' #時間範圍

and (main_table.status = 'processing' or main_table.status = 'complete') #限制訂單狀態

and customer_table.email not in ('[email protected]') #排除某個email賬號的訂單

group by main_table.increment_id #按照訂單分組

order by `main_table`.increment_id desc;

MySQL查詢 每年 每月 每日 訂單數和訂單金額

mysql函式 1.from unixtime 函式時間戳轉換時間 select from unixtime 1588238359 as 時間 2.year 獲取時間的年份 select year 2020 04 30 17 19 19 as 年 3.month 獲取時間的月份 select mon...

MySQL查詢 每年 每月 每日 訂單數和訂單金額

1.from unixtime 格式化mysql時間戳函式 select from unixtime 1610620290 y m d h i s as 時間 year 獲取時間的年份 select year 2021 01 14 18 31 30 as 年 month 獲取時間的月份 select...

MySQL子查詢關聯商品表和訂單表

在擼 寫程式的時候,免不了要用到mysql關聯表查詢語句,而今天在做商品訂單銷量排行的時候,就更用到mysql子查詢了。子查詢,說的通俗一點就是把乙個查詢得到的結果,作為查詢條件巢狀在另乙個查詢當中,輸出結果。如下 goods是商品表,order是訂單表 子查詢語句 select distinct ...