Question : Query assistance!

I'm only pulling 87 records, there are 114 in table s.  I want to include the records who do not have an id_num based on the left join I used.  I thought this join would pul 114 records, what am I missing?  The missing records do not have a s.high_school code.  Thanks!
Code Snippet:
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
declare @source char(5)
select @source = 'ADNCE'
 
--insert into iu_candidate
--(seq, temp_id, grad_yr_last_org, high_school, source_1)
select temp_id, temp_id, 
case when grad_yr = '2010' then '0910'
when grad_yr = '2011' then '1011' end,
o.id_num, @source
from admin_staging s left outer join org_master o
	on s.high_school = o.org_cde
where
o.org_cde <> '*local'
order by s.temp_id
Open in New Window Select All

Answer : Query assistance!

declare @source char(5)
select @source = 'ADNCE'
 
--insert into iu_candidate
--(seq, temp_id, grad_yr_last_org, high_school, source_1)
select temp_id, temp_id,
case when grad_yr = '2010' then '0910'
when grad_yr = '2011' then '1011' end,
o.id_num, @source
from admin_staging s left outer join org_master o
      on s.high_school = o.org_cde and o.org_cde <> '*local'
order by s.temp_id
Random Solutions  
 
programming4us programming4us