I have an access query which I need to convert to Oracle SQL. The access query contains the following 2 expressions,
Funding: IIf([SPCL_FE_HE_FUNDED] Is Null, [FE_HE_FUNDED], [SPCL_FE_HE_FUNDED])
Hours: IIf([FUNDING] In (“40”,”41”,”42”),0,[FES_POSSIBLE_HOURS])
Ive translated the first into..
Case When spcl_fe_he_funded Is Null then fe_he_funded else spcl_fe_he_funded end As Funding,
However, as the second one uses Funding which is created in the first expression im not sure how I can replicate it? Can anyone help?
Funding: IIf([SPCL_FE_HE_FUNDED] Is Null, [FE_HE_FUNDED], [SPCL_FE_HE_FUNDED])
Hours: IIf([FUNDING] In (“40”,”41”,”42”),0,[FES_POSSIBLE_HOURS])
Ive translated the first into..
Case When spcl_fe_he_funded Is Null then fe_he_funded else spcl_fe_he_funded end As Funding,
However, as the second one uses Funding which is created in the first expression im not sure how I can replicate it? Can anyone help?