您好,登錄后才能下訂單哦!
這篇文章主要介紹mongodb如何實現同庫聯表查詢方法,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!
注意:這里只對同庫聯表查詢做介紹,跨庫聯表查詢可能在之后也會介紹(因為公司架構變動,之后可能會聯表查詢)
我用到的聯表查詢有兩種,一種是mongoose的populate,一種是$lookup
一、populate
populate是使用外鍵關聯子表
例如現在有一張訂單表結構(動態外鍵):
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 }, // 訂單的狀態:1完成 2未完成 3失效 })
用戶表:
var userSchema = new mongoose.Schema({ phone: String, status: String, createdAt: Date, updatedAt: Date })
現在我想根據查詢order表,并返回對應用戶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, // 訂單的狀態:1完成 2未完成 3失效 // } });
這里order表的uid指向了user表的_id字段,當然也可以在新建表的時候定義外鍵,這里就不細說了
二、$lookup
lookup就是使用aggregate的$lookup屬性,直接上官網例子非常好懂
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字段,但值得注意的是兩個字段的類型必須一樣(3.5以上貌似可以轉,沒試過)
以上是“mongodb如何實現同庫聯表查詢方法”這篇文章的所有內容,感謝各位的閱讀!希望分享的內容對大家有幫助,更多相關知識,歡迎關注億速云行業資訊頻道!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。