您好,登錄后才能下訂單哦!
這篇文章主要介紹mongodb如何實(shí)現(xiàn)同庫(kù)聯(lián)表查詢方法,文中介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們一定要看完!
注意:這里只對(duì)同庫(kù)聯(lián)表查詢做介紹,跨庫(kù)聯(lián)表查詢可能在之后也會(huì)介紹(因?yàn)楣炯軜?gòu)變動(dòng),之后可能會(huì)聯(lián)表查詢)
我用到的聯(lián)表查詢有兩種,一種是mongoose的populate,一種是$lookup
一、populate
populate是使用外鍵關(guān)聯(lián)子表
例如現(xiàn)在有一張訂單表結(jié)構(gòu)(動(dòng)態(tài)外鍵):
var orderSchema = new mongoose.Schema({ uid: { type: String, required: true }, // 用戶id amount: { type: Number, required: true }, oType: { type: Number, required: true }, // 訂單類型 status: { type: Number, required: true }, // 訂單的狀態(tài):1完成 2未完成 3失效 })
用戶表:
var userSchema = new mongoose.Schema({ phone: String, status: String, createdAt: Date, updatedAt: Date })
現(xiàn)在我想根據(jù)查詢order表,并返回對(duì)應(yīng)用戶phone字段
order.find().populate({path: 'uid', model: User, select: '_id real_name phone bankcard'}).exec(function(err, order) { // order: { // uid: { // phone: '15626202254', // status: "expand", // createdAt: Date, // updatedAt: Date // }, // amount: 5000, // oType: 2, // 訂單類型 // status: 1, // 訂單的狀態(tài):1完成 2未完成 3失效 // } });
這里order表的uid指向了user表的_id字段,當(dāng)然也可以在新建表的時(shí)候定義外鍵,這里就不細(xì)說(shuō)了
二、$lookup
lookup就是使用aggregate的$lookup屬性,直接上官網(wǎng)例子非常好懂
orders表
{ "_id" : 1, "item" : "abc", "price" : 12, "quantity" : 2 } { "_id" : 2, "item" : "jkl", "price" : 20, "quantity" : 1 } { "_id" : 3 }
inventory表
{ "_id" : 1, "sku" : "abc", description: "product 1", "instock" : 120 } { "_id" : 2, "sku" : "def", description: "product 2", "instock" : 80 } { "_id" : 3, "sku" : "ijk", description: "product 3", "instock" : 60 } { "_id" : 4, "sku" : "jkl", description: "product 4", "instock" : 70 } { "_id" : 5, "sku": null, description: "Incomplete" } { "_id" : 6 }
db.orders.aggregate([ { $lookup: { from: "inventory", localField: "item", foreignField: "sku", as: "inventory_docs" } } ])
就是使用order的item字段作為inventory表的查詢條件{sku: item},并賦值給inventory_docs字段,但值得注意的是兩個(gè)字段的類型必須一樣(3.5以上貌似可以轉(zhuǎn),沒(méi)試過(guò))
以上是“mongodb如何實(shí)現(xiàn)同庫(kù)聯(lián)表查詢方法”這篇文章的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對(duì)大家有幫助,更多相關(guān)知識(shí),歡迎關(guān)注億速云行業(yè)資訊頻道!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。