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
|