我安裝我的數據庫是這樣的:跟蹤應用程序中的產品銷售並選擇最暢銷的最佳方式是什麼?
產品:
# id :integer not null, primary key
# code :string
# name :string
# category_id :integer
...
訂單項目:
# id :integer not null, primary key
# order_id :integer
# product_id :integer
# color_id :integer
# qty :integer default("0")
# price :money
...
訂單:
# id :integer
# state :string
# placed_on :datetime
...
現在這種設置使它真正難我挑選best selling products in each week from each category
。我怎樣才能解決這個問題?另一個數據庫來跟蹤銷售情況?請幫忙。
從每個類別**每週定義**暢銷產品的條件是什麼? – Pavan
@Pavan我需要根據銷售數量選擇最暢銷的產品。必須通過Orderitem的數量獲得銷售數量 – THpubs
我對此進行了演示:https://www.youtube.com/watch?v=BVzSMhaucUY – drhenner