我正在写一个sql脚本,whitch应该问一个问题,并且继续将取决于用户的输入。
我试过这个:
prompt script started
accept partitioning prompt "Do you want to partition the table? (Y/N):"
if ($partitioning=Y)
prompt ok, it will be partitioned
else
prompt ok, it won't be partitioned
end;
但是我得到了
ORA-00900例外,此处不允许使用 if 语句。
有没有办法在单个sql脚本中使用if-then-else?如果有可能,请举个例子。