drop jsonShellTbl
create jsonShellTbl
insert jsonShellTbl --id key10 --value {"a":10,"b":{"c":5},"d":[1,11],"e":"str"}}
insert jsonShellTbl --id key0 --value {"a":10,"b":{"c":5},"d":[1,11],"e":"str"}}
insert jsonShellTbl --id key11 --value {"a":11,"b":{"c":6},"d":[1,11],"e":"str"}}
insert jsonShellTbl --id key111 --value {"a":12,"b":{"c":7},"d":[1,11],"e":"str"}}
find jsonShellTbl
findbyid jsonShellTbl --args {"id":"key10"}
//findbyid jsonShellTbl --args {"id":"key10","fields":["a.b"]}
//findbyid jsonShellTbl --args {"id":"key10","fields":["a","b.c"],"condition":{"b.c":{$gt:4}}}
delete jsonShellTbl --id key11
update jsonShellTbl --id key111 --keyvalues {"a":5}
find jsonShellTbl
