Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Couchbase で、名前を保持する 3 つのドキュメントがあるとします。
ピーター・ポール・メアリー
N1QL を使用して、これを Peter、Paul、Mary の単一の文字列に変換する簡単な方法はありますか?
次のことができます。
SELECT ENCODE_JSON(ARRAY_AGG(d.name)) AS name FROM mybucket d WHERE d.name IS NOT NULL;