DECLARE
a NUMBER;
BEGIN
a := least(1
,2
,3);
dbms_output.put_line(a);
END;
DECLARE
a NUMBER;
BEGIN
a := least(1
,2
,3);
dbms_output.put_line(a);
END;