Skip to content

Commit

Permalink
Merge pull request #50 from bcgov/WBCAMS-867
Browse files Browse the repository at this point in the history
Update 18-UpdateJobOpeningFromLMO2025.sql
  • Loading branch information
sunanditasahu authored Jan 31, 2025
2 parents f078945 + db6097f commit 8260c3b
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion SSOT/18-UpdateJobOpeningFromLMO2025.sql
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,17 @@ Update #TempGroups
SET region = 'All'
where region = 'British Columbia'

--Update the industry adn sub-industry to align with the code.
Update #TempGroups
SET industry_agg = 'All'
where industry_agg = 'All Industries'

--Update the industry adn sub-industry to align with the code.
Update #TempGroups
SET industry_sub = 'All'
where industry_sub = 'All Industries'


Update #TempGroups
Set NOCCodeId = n.Id
From #TempGroups t JOIN NOC n
Expand Down Expand Up @@ -74,4 +85,4 @@ REFERENCES [dbo].[NOC] ([Id])
GO

--Check results
Select * from JobOpening
Select * from JobOpening

0 comments on commit 8260c3b

Please sign in to comment.