I have a list of employee annual salary rates.
I would like to return a value (ie A, B, C etc) when the annual salary rate falls within a salary range.
Here is what I tried:
CASE "PS_EMPLOYEES"."ANNUAL_RT"
WHEN '>22359 AND <28080 THEN 'A'
WHEN '>28079 AND <35360 THEN 'B'
ELSE 'NONE'
END
I am getting the missing right parenthesis error. Any help would be greatly appreciated.
I would like to return a value (ie A, B, C etc) when the annual salary rate falls within a salary range.
Here is what I tried:
CASE "PS_EMPLOYEES"."ANNUAL_RT"
WHEN '>22359 AND <28080 THEN 'A'
WHEN '>28079 AND <35360 THEN 'B'
ELSE 'NONE'
END
I am getting the missing right parenthesis error. Any help would be greatly appreciated.