SET-SEQUENCE-POSITION — Sets the position of a database sequence.Function
name
The name of the sequence as a string, symbol or SQL expression.
position
An integer.
database
A database object which defaults to *default-database*.
result
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