Answer:
For such a report , the sql query required would be:
SELECT emp_id, curr_salary, curr_salary*1.03 AS inc_salary FROM Employee;
Explanation:
For such a report , the sql query required would be:
SELECT emp_id, curr_salary, curr_salary*1.03 AS inc_salary FROM Employee;
In the above sql query employee id is emp_id , curr_salary is the current salary column. "curr_salary*1.03" is been made because an increment of 3% means salary + salary*3% , that is , salary*1.03.