SQL Join challenge
From: Steven Helms (steve_at_sh3inc.com)
Date: 10/28/03
- Next message: Ignacio Vazquez: "Re: SQL Join challenge"
- Previous message: Mónica García Ruiz: "Problemas al exportar una tabla a formato PDF"
- Next in thread: Ignacio Vazquez: "Re: SQL Join challenge"
- Reply: Ignacio Vazquez: "Re: SQL Join challenge"
- Reply: Bryan Valencia: "Re: SQL Join challenge"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Date: Tue, 28 Oct 2003 13:18:10 -0500
I have the following, but it does not work. It works with one inner join
statement. I want the end result to be the complete LOG table and the
AppraiserName, AppraisalType and ReportType columns. Can anyone help with
this Join?
SELECT LOG.*,
FROM LOG
Appraisers.FULLNAME AS AppraiserName,
AppraisalType.DESC AS AppraisalType,
ReportType.DESC AS ReportType
FROM (((Log
INNER JOIN Appraisers ON Log.APPRAISER = Appraisers.APPRAISERINITIALS)
INNER JOIN ApraisalType ON LOG.APPRAISAL_TYPE =
AppraisalType.APPRAISAL_TYPE)
INNER JOIN ReportType ON LOG.REPORT_TYPE = ReportType.REPORT_TYPE)
WHERE ((LOG.APPRAISAL_NUMBER)=9987)
Thank you,
Steven
- Next message: Ignacio Vazquez: "Re: SQL Join challenge"
- Previous message: Mónica García Ruiz: "Problemas al exportar una tabla a formato PDF"
- Next in thread: Ignacio Vazquez: "Re: SQL Join challenge"
- Reply: Ignacio Vazquez: "Re: SQL Join challenge"
- Reply: Bryan Valencia: "Re: SQL Join challenge"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]