PPT Slide
Some examples for defining sequences
The integers that can be specified for
sequences as they are created can be
negative as well as positive. Consider
the following example of a sequence
that generates decreasing numbers
CREATE SEQUENCE countdown_20START WITH 20INCREMENT BY 1NOMAXVALUECYCLEORDER;