HomeMogDBMogDB StackUqbar
v3.1

Documentation:v3.1

Supported Versions:

Other Versions:

SEQUENCE Functions

The sequence functions provide a simple method to ensure security of multiple users for users to obtain sequence values from sequence objects.

  • nextval(regclass)

    Description: Specifies an increasing sequence and returns a new value.

    img NOTE: To avoid blocking of concurrent transactions that obtain numbers from the same sequence, a nextval operation is never rolled back; that is, once a value has been fetched it is considered used, even if the transaction that did the nextval later aborts. This means that aborted transactions may leave unused "holes" in the sequence of assigned values. Therefore, MogDB sequences cannot be used to obtain sequence without gaps.

    img NOTICE: The nextval function can be executed only on the primary node. It is not supported on standby nodes.

    Return type: numeric

    The nextval function can be invoked in either of the following ways: (In example 2, the sequence name cannot contain a dot.)

    Example 1:

    MogDB=# select nextval('seqDemo');
     nextval
    ---------
           2
    (1 row)

    Example 2:

    MogDB=# select seqDemo.nextval;
     nextval
    ---------
           2
    (1 row)
  • currval(regclass)

    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.

    Return type: numeric

    The currval function can be invoked in either of the following ways: (In example 2, the sequence name cannot contain a dot.)

    Example 1:

    MogDB=# select currval('seq1');
     currval
    ---------
           2
    (1 row)

    Example 2:

    MogDB=# select seq1.currval;
     currval
    ---------
           2
    (1 row)
  • lastval()

    Description: 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, invoking lastval will report an error.

    Return type: numeric

    Example:

    MogDB=# select lastval();
     lastval
    ---------
           2
    (1 row)
  • setval(regclass, numeric)

    Description: Sets the current value of a sequence.

    Return type: numeric

    Example:

    MogDB=# select setval('seqDemo',1);
     setval
    --------
          1
    (1 row)
  • setval(regclass, numeric, Boolean)

    Description: Sets the current value of a sequence and the is_called sign.

    Return type: numeric

    Example:

    MogDB=# select setval('seqDemo',1,true);
     setval
    --------
          1
    (1 row)

    img NOTE: The current session 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, the change caused by setval will not be undone by transaction rollback.

    img NOTICE: The setval function can be executed only on the primary node. It is not supported on standby nodes.

  • pg_sequence_last_value(sequence_oid oid, OUT cache_value int16, OUT last_value int16)

    Description: Obtains the parameters of a specified sequence, including the cache value and current value.

    Return type: int16, int16

  • last_insert_id()

    Description: Gets the first auto-generated value that was last successfully inserted for an auto-increment column.

    Return type: int16

  • last_insert_id(int16)

    Description: Sets the return value of the next last_insert_id() function and returns the value. If the parameter is NULL, set the return value of the next last_insert_id() function to 0. This function returns NULL.

    Return type: int16

    Example:

    MogDB=# select last_insert_id(100);
     last_insert_id
    ----------------
                100
    (1 row)
    MogDB=# select last_insert_id();
     last_insert_id
    ----------------
                100
    (1 row)

    img NOTE:

    • last_insert_id() and last_insert_id(int16) are session-level functions. If no data is inserted into the auto-increment column in the current session, last_insert_id() returns 0.
    • last_insert_id() and last_insert_id(int16) are available only when sql_compatibility is set to B.
Copyright © 2011-2024 www.enmotech.com All rights reserved.