forked from orientechnologies/orientdb
-
Notifications
You must be signed in to change notification settings - Fork 0
QL Drop Property
lvca edited this page Dec 14, 2012
·
2 revisions
The SQL Drop Property command removes a property from the schema. This doesn't remove the property values in records, but just change the schema information. Records will continue to have the property values if any.
DROP PROPERTY <class>.<property>
Where:
- class is the class of the schema
- property, is the property created into the class
Remove the property 'name' in class 'User':
DROP PROPERTY user.name
To create a new property use the Create Property command.
To know more about other SQL commands look at SQL commands.
This is a command of the Orient console. To know all the commands go to Console commands.