-1
SELECT dish_category.Cat_Name, order_items.OI_Name, dish_management.D_Price, order_items.OI_Quantity, order_items.OI_Price, order_management.O_Time
FROM dish_category
INNER JOIN dish_management ON dish_category.Cat_ID = dish_management.Cat_ID
INNER JOIN order_items ON dish_management.D_ID = order_items.D_ID
INNER JOIN order_management ON order_items.O_ID = order_management.O_ID
WHERE order_management.O_Time = (CONVERT(DATETIME, CONVERT(DATETIME, CONVERT(VARCHAR, date, 103),103)) BETWEEN @DSStart_date AND @DSEnd_date)
你能指點我哪裏查詢可能是錯誤的嗎?該錯誤信息是:SQL轉換日期時間錯誤
錯誤的函數參數「」單不承認無法解析 查詢文本
現在它顯示函數參數列表中的錯誤')'未識別無法解析查詢文本' –
您是否使用我的最新更新?請注意我更新了答案。 –
是的,WHERE(CONVERT(DATETIME,CONVERT(varchar ,date),103)BETWEEN @DSStart_date AND @DSEnd_date) –