The sequence functions provide a simple method to ensure security of multiple users for users to obtain sequence values from sequence objects.
Specifies an increasing sequence and returns a new value.
Return type: bigint
The nextval function can be invoked in either of the following ways: (In example 2, the Oracle syntax is supported. Currently, the sequence name cannot contain a dot.)
Example 1:
1 2 3 4 5 | select nextval('seqDemo'); nextval --------- 2 (1 row) |
Example 2:
1 2 3 4 5 | select seqDemo.nextval; nextval --------- 2 (1 row) |
Returns the last value of nextval for a specified sequence in the current session. If nextval has not been invoked for the specified sequence in the current session, an error is reported when currval is invoked. By default, currval is disabled. To enable it, set enable_beta_features to true. After currval is enabled, nextval will not be pushed down.
Return type: bigint
The currval function can be invoked in either of the following ways: (In example 2, the Oracle syntax is supported. Currently, the sequence name cannot contain a dot.)
Example 1:
1 2 3 4 5 | select currval('seq1'); currval --------- 2 (1 row) |
Example 2:
1 2 3 4 5 | select seq1.currval seq1; currval --------- 2 (1 row) |
Returns the last value of nextval in the current session. This function is equivalent to currval, but lastval does not have a parameter. If nextval has not been invoked in the current session, an error is reported when lastval is invoked.
By default, lastval is disabled. To enable it, set enable_beta_features or lastval_supported to true. After lastval is enabled, nextval will not be pushed down.
Return type: bigint
For example:
1 2 3 4 5 | select lastval(); lastval --------- 2 (1 row) |
Sets the current value of a sequence.
Return type: bigint
For example:
1 2 3 4 5 | select setval('seqDemo',1); setval -------- 1 (1 row) |
Sets the current value of a sequence and the is_called sign.
Return type: bigint
For example:
1 2 3 4 5 | select setval('seqDemo',1,true); setval -------- 1 (1 row) |
The current session and GTM will take effect immediately after setval is performed. If other sessions have buffered sequence values, setval will take effect only after the values are used up. Therefore, to prevent sequence value conflicts, you are advised to use setval with caution.
Because the sequence is non-transactional, changes made by setval will not be canceled when a transaction rolled back.