我在Orient db中有一份文件,如
{"a":"1","b":"2","c":"3"}
如果使用java
c为3,我该如何更新b的值?我需要使用java
执行以下查询UPDATE <document name >Merge {"a":25"} where c=3
请帮帮我
答案 0 :(得分:0)
ODatabaseDocumentTx db = new ODatabaseDocumentTx(path);
db.open("root","root");
db.command(new OCommandSQL("update <document name > set a=30 where c=3")).execute();