I have an Oracle PROC 11g. Inside the proc is 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
one field in table
But I do not know what this means:
%type
after the field name.
What does the above line do or do you mean?