SET-SEQUENCE-POSITION — Sets the position of a database sequence.
Function
The name of the sequence as a string, symbol or SQL expression.
An integer.
A database object which defaults to *default-database*.
An integer.
Explicitly set the position of the sequence called name in database, which defaults to *default-database*, to position which is returned.
(sequence-last [foo]) => 4 (set-sequence-position [foo] 50) => 50 (sequence-next [foo]) => 51