You can use FORMAT as part of a derived expression. To determine the percent increase if employee 10019 is given a $1000 raise:
SELECT (1000/salary)*100 (FORMAT 'zz9%') (TITLE 'Percent Incr') FROM employee WHERE empno = 10019 ;
Result:
Percent Incr ------------ 3%