Skip to content

Latest commit

 

History

History
34 lines (23 loc) · 730 Bytes

SQL-Drop-Index.md

File metadata and controls

34 lines (23 loc) · 730 Bytes
search
keywords
SQL
DROP INDEX
drop
delete
index

SQL - DROP INDEX

Removes an index from a property defined in the schema.

If the index does not exist, this call just returns with no errors.

Syntax

DROP INDEX <index>|<class>.<property>
  • <index> Defines the name of the index.
  • <class> Defines the class the index uses.
  • <property> Defines the property the index uses.

Examples

  • Remove the index on the Id property of the Users class:

    orientdb> DROP INDEX Users.Id
    

For more information, see