Question: 1/25
You need to declare a variable to store a value that must always match the datatype of the EMPLOYEES.SALARY column, even if the column datatype changes later. Which declaration is the best practice?
v_sal NUMBER;
v_sal employees.salary%TYPE;
v_sal employees%ROWTYPE;
v_sal CONSTANT employees.salary%TYPE;