I need to select a field called ProgramID from a table and if the ProgramID is NULL then I need to select the value in the InterimProgramID from the same table and alias it
You can also use IFNULL function
select IFNULL(ProgramId,interimId) as ProgramId