如何从 cbq 在 couchbase 中创建文档

How to create document in couchbase from cbq

我已经成功创建了我的存储桶并想要插入文档。 假设我必须像这样以 JSON 格式插入数据:

{
    "name": "abc",
    "password": "abcd123",
    "user_id": "abc123"
}

我想插入我的存储桶。

请提前帮忙谢谢。

您需要使用 INSERT 语句(从 couchbase 4.1 开始可用):http://developer.couchbase.com/documentation/server/4.1/n1ql/n1ql-language-reference/insert.html

INSERT INTO yourBucketName (KEY, VALUE) VALUES ("keyOfYourObject", 
  { "name": "abc", "password": "abcd123", "user_id": "abc123"}) RETURNING * ;