|
prashantsarada99
Starting Member
1 Post |
Posted - 2008-06-12 : 06:26:02
|
| i have 2 table patient & PatientServiced and i want to join both the table the common field is id(patient) & patient_id(patientservices) so what will be the sql query for it? SELECT [id], [firstName], [lastName], [middleName], [streetAddress], [city], [state], [zip], [phone], [gender], [dob], [age], [serviceDate], [clinic_id], [entryDate], [emailAddress], [enteredBy], [importId] FROM [FCID_2].[dbo].[Patient] SELECT [id], [patient_id], [value], [topNumber], [bottomNumber], [patientService_id], [patientPaid], [insuranceAmtRequested], [insuranceAmtPaid], [insuranceBalance], [totalPaid], [batchID], [status], [dateSent], [datePaid], [dateDeclined], [declinedReason], [correctionNote], [dateEntered], [enteredBy], [insuranceProvider_id], [insuredMemberID], [insuredGroupID], [insuredFirstName], [insuredLastName], [insuredRelationship], [adjustedReason], [remitDetail], [correctedClaim] FROM [FCID_2].[dbo].[PatientServiced] |
|