Inner Join and Left Join

dry

New member
Local time
Yesterday, 18:42
Joined
Jan 3, 2007
Messages
1
I am trying to do an inner join with a left join. The only problem is, I want to inner join the table that is being joined. This is how I thought it would work below, but it doesn't work.

SELECT * FROM ((Submissions LEFT JOIN Candidates ON Submissions.`Candidate Code` = Candidates.`Candidate Code`) INNER JOIN `Type Candidate Status` ON Candidate.Status = `Type Candidate Status`.`Status ID`)
WHERE Submissions.Status <> 7 ORDER BY `School Interest` DESC;

I want to get the Candidate.Status to inner join with the `Type Candidate Status`.`Status ID`.

If you can help, thanks in advance.
Dave
 
Do you really have all those quote marks and spaces in your object names? Get rid of these as a first step.
 

Users who are viewing this thread

Back
Top Bottom