Write a PL/SQL block and declare a variable v_sal of the type NUMBER. Include the following statement in the Execution section:
SELECT MAX(salary)
INTO v_sal
FROM employees;
Display the maximum salary in the Employees table.
Submit the code of the PL/SQL block.