In most programming languages, you have a quick way to write the increment for a variable, for example, the following examples:
inc(variableName); variableName++; variableName += 1;
What methods exist in Oracle Pl / Sql to do this, and not use the following:
variableName := variableName + 1;
source share