相关文章推荐
近视的火龙果  ·  oracle 报错ORA-01422 ...·  1 年前    · 
安静的油条  ·  function - 'this' ...·  1 年前    · 
I have 3 tables in MYSQL like:
rec_application=>AppId(PK),AppNum
rec_shortlistedCandidates=>ShortListId(PK),AppId(FK),TotalScore
rec_shortListedScore=>AppId(FK),TestId,Score,Comment
I want to list the Shortlisted candidates with there AppNum,Score and Comment for the selected TestId[on a dropdown change].The TestId can or can't be there in the 'rec_shortListedScore',if not present then Score=0 and Comment=null.
i tried :
SELECT S.AppId,SL.Score,SL.Comments,A.AppNum
FROM rec_shortlistedcandidates S
INNER JOIN rec_application A ON A.AppId=S.AppId
left JOIN rec_shortlistscore SL ON SL.AppId=S.AppId;
but this displays only when the 'rec_shortlistscore' have data in it. A left outer join will do this. It returns all records from the right table, with nulls if the left table has no match
SQL Wizardry Part One - Joins [ ^ ] is my first SQL article, and it explains it.
  • Read the question carefully.
  • Understand that English isn't everyone's first language so be lenient of bad spelling and grammar.
  • If a question is poorly phrased then either ask for clarification, ignore it, or edit the question and fix the problem. Insults are not welcome.
  • Don't tell someone to read the manual. Chances are they have and don't get it. Provide an answer or move on to the next question. Let's work to help developers, not make them feel stupid.
  •