timscronin
MIS
Is there any way to replace the following case with some type of in line sql
prn =
case
WHEN special_flag = 'PRN' THEN '1'
else '0'
END
lookin for an immediate if type
prn =
case
WHEN special_flag = 'PRN' THEN '1'
else '0'
END
lookin for an immediate if type