Hi experts,
How can I delete a repating attribut using dql.
For example, how can I delete a specific alias of an alias_set.
If there are Accepted Answers, those will be shown by default. You can switch to 'All Replies' by selecting the tab below.
Hello Imran,
UPDATE <type> objects REMOVE <attribute0>[<index0>], REMOVE <attribute1>[<index1>], ... WHERE <some qualification>
~ Konstantin
or use truncate to remove all value.
Just to clarify:
Konstantin's DQL updates the OBJECT TYPE to delete attribute (repeating or single)
Saurabh's DQL updates specific OBJECT instances and delete attribute values.