首頁 > 資料庫 > mysql教程 > 當我按日期篩選時,為什麼我的左外連線不回傳所有銷售代表?

當我按日期篩選時,為什麼我的左外連線不回傳所有銷售代表?

Patricia Arquette
發布: 2025-01-17 14:22:10
原創
259 人瀏覽過

Why Doesn't My Left Outer Join Return All Sales Representatives When I Filter by Date?

解決SQL左外連接中日期篩選問題

你的SQL查詢中,左外連線沒有回傳預期的結果。具體來說,當你在WHERE子句中包含日期參數時,在右側表中沒有符合資料的銷售代表不會顯示。

為了解決這個問題,你需要將prescriptions表的日期約束移到連接的ON條件中,而不是保留在WHERE子句中:

<code class="language-sql">SELECT  salesrep.salesrepid as SalesRepID,
        salesrep.fname as SalesrepFName,
        salesrep.lname as SalesRepLName,
        salesrep.fname+' '+salesrep.lname as SalesRepFullName,
        prescriber.dea_no as PDeaNo,
        prescriber.lname+', '+prescriber.fname as DocName,
        CONVERT(VARCHAR(8), prescriptions.filldate, 1) as FillDate,
        prescriptions.drugname as DrugName,
        prescriptions.daysupply as Supply,
        prescriptions.qtydisp as QtyDisp,
        prescriptions.rx_no as Refill,
        prescriptions.copay as Sample,
        ROUND(prescriptions.AgreedToPay-(prescriptions.AgreedToPay*.07),2) as AgreedToPay,
        prescriptions.carrierid as CarrierID
FROM salesrep
  LEFT OUTER JOIN prescriber on salesrep.salesrepid = prescriber.salesrepid
  LEFT OUTER JOIN prescriptions ON prescriber.dea_no = prescriptions.dea_no
                             AND prescriptions.filldate >= '09-01-12'
                             AND prescriptions.filldate <= '09-17-12'
ORDER BY prescriptions.filldate</code>
登入後複製

透過將約束條件移到ON條件中,你可以確保左外連接正確地傳回所有銷售代表的結果,無論prescriptions表中是否存在符合記錄。

以上是當我按日期篩選時,為什麼我的左外連線不回傳所有銷售代表?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
作者最新文章
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板