1
I have an Oracle PROC 11g. Inside proc has something like this:
v_prazo_subs_ans ts_odo.odo_controle_sistema.val_parametro%type;
Where:
v_prazo_subs_ans is a variable
ts_odo.odo_controle_sistema is the table
val_parametro a field in the table
But I don’t know what that means:
%type after the field name.
What the above line does or means?