-
$lookup
tham gia bộ sưu tập thành phố
-
$lookup
tham gia bộ sưu tập quốc gia
-
$project
để hiển thị các trường bắt buộc, hãy lấy phần tử đầu tiên từ city
và country
sử dụng $first
db.travel_reservation.aggregate([
{
$lookup: {
from: "city",
localField: "city_id",
foreignField: "_id",
as: "city"
}
},
{
$lookup: {
from: "country",
localField: "city.country_id",
foreignField: "_id",
as: "country"
}
},
{
$project: {
name_person: 1,
city: { $first: "$city" },
country: { $first: "$country" }
}
}
])
Sân chơi