Home » Interview » Technology

Define PL/SQL sequences and write syntax for a sequence

Correct Answer: A sequence is a database object that is used to generate sequential number CREATE SEQUENCE seqname [increment] [minimum value][maximum value][start][cache][cycle] Nextval and currval lets us get the next value and current value from the sequence

← Previous Question Next Question→

Discussion & Comments

No comments yet. Be the first to comment!
Join Discussion