I have script which is SQLPLUS form. I ask user to enter values for substitution variables to execute insert statement.
some substitution variables are used for mandatory columns, so
how can I ask the user to fill again if substitution variable value is null?
how to assign a value to the same substitution variable depending on it's value itself by forcing user to enter it?
or how to force user to enter value for substitution variable ?
something like
psedu code:
accept x prompt please enter value for x
while (&x is null) loop
accept x prompt please enter value for x
end loop
insert into ...
is it possible