need help with a query in Couchbase enviroment.
Both document 1 and document 2 is in the same bucket.
First the query will get the document message1 using this
Assuming that the name of Document2 is based on the uid of Document1, that is, "user1" is based on uid=1, you can do the following:
SELECT d1.uid, d1.message, d1.sent_by, d2.username FROM mybucket d1 USE KEYS "message1" JOIN mybucket d2 ON KEYS "user" || d1.uid;