Write a PL/SQL program to show the uses of a constrained subtype.
DECLARE subtype constrained_bi IS binary_integer range 1..10; l_cbi_var1 constrained_bi; BEGIN l_cbi_var1:=8; dbms_output.put_line('The value assigned is:'||to_char(l_cbi_var1)); END; /
Sample Output:
The value assigned is:8
total answers (1)
start bookmarking useful questions and collections and save it into your own study-lists, login now to start creating your own collections.
Sample Output:
need an explanation for this answer? contact us directly to get an explanation for this answer