Need to check the input is is a real number
Hi,
I just want to check the input is not a negative number.
for example,
vNum NUMBER := -1 THEN DBMS_OUTPUT.PUT_LINE('wrong');
vNum NUMBER := 1 THEN DBMS_OUTPUT.PUT_LINE('rite');
How can i check whether the input is not a negative value?