Skip to content

Latest commit

 

History

History
28 lines (17 loc) · 571 Bytes

SQL-Drop-Sequence.md

File metadata and controls

28 lines (17 loc) · 571 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