Ich bin ein Anfänger in SQL Server
Ich habe drei Tabellen in der Datenbank hospital
- Patientenakten
- SonstigeDienstleistungen
- Patientendepot
Zwei Abfragen zur Anzeige meines Ergebnisses
-
Anfrage Nummer eins. Anzeige PatientFilesID, TotalOtherServices
SELECT pf.ID AS PatientFileID, SUM(os.Quantum * os.Price) AS TotalOtherServices FROM PatientsFiles pf INNER JOIN OtherServices os ON pf.ID = os.Patient_File_ID WHERE pf.ID = '14' GROUP BY pf.ID
Es ist wahres Ergebnis
PatientFileID | TotalOtherServices
14 194.00
-
Anfrage Nr. 2. Anzeige PatientFilesID, TotalPatientDeposit
SELECT pd.Patient_File_ID AS PatientFileID, SUM(pd.Deposit) AS TotalPatientDeposit FROM PatientsDeposits pd WHERE pd.Patient_File_ID = '14' GROUP BY pd.Patient_File_ID
Es ist wahres Ergebnis
PatientFileID | TotalPatientDeposit
14 450.00
-
Meine sehr müde, zwei Abfragen zu mischen
SELECT pf.ID AS PatientFileID, SUM(os.Quantum * os.Price) AS TotalOtherServices, SUM(pd.Deposit) AS TotalPatientDeposit FROM PatientsFiles pf INNER JOIN OtherServices os ON pf.ID = os.Patient_File_ID INNER JOIN PatientsDeposits pd ON pf.ID = pd.Patient_File_ID WHERE pf.ID = '14' GROUP BY pf.ID
Es ist ein falsches Ergebnis
PatientFileID | TotalOtherServices | TotalPatientDeposit
14 582.00 1350.00
Ich danke Ihnen für Ihre Hilfe im Voraus