Skip to content

Latest commit

 

History

History
27 lines (17 loc) · 561 Bytes

SQL-Drop-Sequence.md

File metadata and controls

27 lines (17 loc) · 561 Bytes

SQL - DROP SEQUENCE

Removes a sequence. This feature was introduced in version 2.2.

Syntax

DROP SEQUENCE <sequence>
  • <sequence> Defines the name of the sequence you want to remove.

Examples

  • Remove the sequence idseq:

    orientdb> DROP SEQUENCE idseq
    

For more information, see