我有以下查詢以檢查我的oscommerce商店中未售出的產品。查詢oscommerce中未售出產品的日期範圍
$ products_query_raw = 「(。TABLE_PRODUCTS。 」P「。 TABLE_PRODUCTS_DESCRIPTION。 」PD)LEFT JOIN「 選擇p.products_id,p.products_quantity,p.products_model,從pd.products_name」。 TABLE_ORDERS_PRODUCTS 。 「op ON p.products_id = op.products_id where op.products_id is NULL and p.products_id = pd.products_id order by p.products_model」;
這似乎工作正常,但我想限制它在日期範圍內搜索未售出的產品。 訂單的日期位於表ORDER中,訂單產品在ORDER_PRODUCTS表中。
我嘗試了幾件事情,但我似乎無法做到,如果有人能夠幫助我,我將不勝感激。