1.创建约束
CREATE CONSTRAINT ON (p:Person) ASSERT p.name IS UNIQUE
输出:
Added 1 constraint, completed after 446 ms.
2.删除约束
DROP CONSTRAINT ON (p:Person) ASSERT p.name IS UNIQUE
输出:
1.创建约束
CREATE CONSTRAINT ON (p:Person) ASSERT p.name IS UNIQUE
输出:
Added 1 constraint, completed after 446 ms.
2.删除约束
DROP CONSTRAINT ON (p:Person) ASSERT p.name IS UNIQUE
输出: