plsql中的自增函数

increment function in plsql

在大多数编程语言中,您可以快速地为变量编写增量,如下例所示:

inc(variableName);
variableName++;
variableName += 1;

Oracle Pl/Sql 中有哪些方法可以代替使用以下方法来执行此操作:

variableName := variableName + 1;

已列出运算符 in the documentation

没有 +++= 的等效项。恐怕你得走很远的路。

您可以编写自己的 inc() 函数,但这可能会降低您的代码对其他人的可读性,因为它是非标准的。