Skip to content
Advertisement

Oracle SQL Rewrite so field does not return invalid indentifier

I am creating a view and you cannot create a view with a column outer-joined to a subquery, so I found another way to do it, but now I am having an issue with a field being out of scope.

Original Query

Results

crn term descrip
123 202101 Physics
456 202001 Algebra
789 202101 Gym
123 202001 Anatomy
456 201905 Algebra
789 202101 Gym
246 202101 null

New query

r.term gets invalid identifier since it is out of scope, how can I rewrite to get it into scope? Any suggestions are greatly appreciated

Advertisement

Answer

If you have only one row for each combination of crn and term in course table, then you may consider lateral join:

CRN | TERM   | TERM_DESCRIP
--: | :----- | :-----------
123 | 202101 | Physics     
456 | 202001 | Algebra     
789 | 202101 | Gym         
123 | 202001 | Anatomy     
456 | 201905 | Algebra     
789 | 202101 | Gym         
246 | 202101 | null        

db<>fiddle here

User contributions licensed under: CC BY-SA
5 People found this is helpful
Advertisement