我使用下面的查詢來獲取我的表顯示出兩個日期
SELECT
b.sales_title,c.cat_name,COUNT(b.sales_id) as cnt,COUNT(DISTINCT e.comment_id) as coun
FROM tb_sale_report a
INNER JOIN tbl_sales b on a.sales_id=b.sales_id
INNER JOIN tb_category c on c.cat_id=b.category_id
LEFT JOIN tb_comment e on b.sales_id=e.sales_id
GROUP BY b.sales_title
+------------+---------+--------+------+
| sales_title | cat_name| cnt | coun |
+-------------+---------+--------+------+
| My Sales |Toys |20 |5 |
| First Sale |Dress |28 |1 |
|Premium |Computer |7 |16 |
+-------------+--------+---------+------+
現在的結果之間篩選MySQL的結果tb_sale_report
我也有一個名爲view_date
另一場將存儲的日期在其中記錄ID添加。現在我打算在tb_search_report
表中添加一個篩選選項,用戶可以在其中搜索在特定日期(例如開始日期和結束日期)之間添加的記錄。我如何編寫where
條件來根據指定的日期過濾結果。 需要幫助。提前感謝。
非常感謝。它達到了目的。 – 2012-02-29 09:45:51