You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[
{"_key":"http://example.org/","title":"This is test record 1!"},
{"_key":"http://example.net/","title":"test record 2."},
{"_key":"http://example.com/","title":"test test record three."},
{"_key":"http://example.net/afr","title":"test record four."},
{"_key":"http://example.org/aba","title":"test test test record five."},
{"_key":"http://example.com/rab","title":"test test test test record six."},
{"_key":"http://example.net/atv","title":"test test test record seven."},
{"_key":"http://example.org/gat","title":"test test record eight."},
{"_key":"http://example.com/vdw","title":"test test record nine."},
]
> select --table Site
[
[0, 1347501796.50709, 0.000130176544189453],
[
[
[9],
[
["_id", "UInt32"],
["_key", "ShortText"],
["title", "ShortText"]
],
[1, "http://example.org/", "This is test record 1!"],
[2, "http://example.net/", "test record 2."],
[3, "http://example.com/", "test test record three."],
[4, "http://example.net/afr", "test record four."],
[5, "http://example.org/aba", "test test test record five."],
[6, "http://example.com/rab", "test test test test record six."],
[7, "http://example.net/atv", "test test test record seven."],
[8, "http://example.org/gat", "test test record eight."],
[9, "http://example.com/vdw", "test test record nine."]
]
]
]
4.1.9. レコードの取得
> select --table Site --query _id:1
[
[0, 1347502163.68553, 0.000391006469726562],
[
[
[1],
[
["_id", "UInt32"],
["_key", "ShortText"],
["title", "ShortText"]
],
[1, "http://example.org/", "This is test record 1!"]
]
]
]
> select --table Site --query '_key:"http://example.org/"'
[
[0, 1347502226.36438, 0.000367879867553711],
[
[
[1],
[
["_id", "UInt32"],
["_key", "ShortText"],
["title", "ShortText"]
],
[1, "http://example.org/", "This is test record 1!"]
]
]
]