집 >데이터 베이스 >MySQL 튜토리얼 >날짜별로 필터링할 때 내 왼쪽 외부 조인이 모든 영업 담당자를 반환하지 않는 이유는 무엇입니까?
SQL Left Outer Join의 날짜 필터링 문제 해결
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 중국어 웹사이트의 기타 관련 기사를 참조하세요!