Neo4j使用Cypher語句實戰(索引,數據備份,導入)

8.1創建索引 創建單一屬性索引 語法: CREATE INDEX ON :Lable(property) CREATE INDEX ON :Person(name) 給數據庫的:Person標籤的name屬性創建索引 創建複合屬性索引 語法:CREATE INDEX ON :Label(prop1,...,propN) CREATE INDEX ON :Person(age,country) 8
相關文章
相關標籤/搜索