JQL怎么联查多个表哦?
有三张表
team: {
"properties": {
"_id": {
"description": "ID,系统自动生成"
}
"players":{
"bsonType": "array",
"title": "队员",
"foreignKey": "user._id"
}
}
}
user:
{
"properties": {
"_id": {
"description": "ID,系统自动生成"
}
"data":{
"bsonType": "string" ,
"foreignKey": "data._id"
}
}
}
data:
{
"properties": {
"_id": {
"description": "ID,系统自动生成"
},
"goals":{
"bsonType": "int"
}
}
}
怎么能一下查询出全部的信息呢。
目前尝试了 const user = db.collection('user', 'data').getTemp(); db.collection('team', user).get(). 这样查询到的data 字段为id, 而不是我想要的具体的那个object.
请求帮助。
s***@163.com (作者)
好的~
2022-10-17 14:33