neo4j 基礎使用方法

2021-10-24 14:50:35 字數 938 閱讀 1196

match (n:person)

delete n

match (n:person)

detach delete n

create (:person)

create (n:person) return n

match (n:person)

match (m:person)

create (n)-[r:friend]->(m)

有檔案頭且分隔符為 『,』 檔案是直接放置在資料庫下import資料夾中的(命令大寫可以換成小寫)

load csv with headers from 『file:/ as line fieldterminator 『,』

merge (:person )

最後一句寫成create (:person )可以大幅度提高匯入效率

load csv with headers from 『file:/ as line fieldterminator 『,』

match (x:person) where x.name=line.name0

match (y:person) where y.name=line.name1

create (x)-[:relation]->(y)

create index on :label(property)

在之後的版本中neo4j會逐漸使用下面的語句替代原先的索引建立語句:

create index for (n:label) on (n.property)

只有在建立索引之後,match/merge才能以非常快的速度進行查詢!

drop index on :label(property)

在之後的版本中neo4j會逐漸使用下面的語句替代原先的索引建立語句:

drop index index_name

Neo4j簡單使用

節點 乙個圖形的乙個基本單元 屬性 描述節點及關係的鍵值對 關係 連線兩個節點的部分,具有方向 標籤 由節點或關係組成,乙個節點可以包含多個標籤 neo4j中使用的資料庫查詢語言是cypher,是一種類sql的宣告式語言,簡稱cql。現簡單示例增刪改查操作。操作一 增 不同於sql中的insert插...

neo4j使用總結

埠配置 外掛程式配置 dbms.jvm.additional dunsupported.dbms.udc.source tarball org.neo4j.server.thirdparty jaxrs classes org.neo4j.tableau.wdc tableau wdc dbms.s...

Neo4j使用操作

neo4j zip環境設定 1 windows 下安裝 2 neo4j啟動 開啟cmd命令列,找到neo4j安裝目錄 在瀏覽器中開啟neo4j操作頁面 輸入賬號密碼,點選connect即可訪問資料庫。注 初始使用者名稱密碼都是neo4j,首次開啟需要修改密碼。資料庫訪問 成功連線資料庫之後進入上圖頁...