gpt4 book ai didi

waterline - 从数据库中选择特定字段

转载 作者:行者123 更新时间:2023-12-02 19:29:08 25 4
gpt4 key购买 nike

我只是想知道是否可以使用水线选择特定字段,下面给出了orientdb查询。

e.g. 
select phone from user

我想使用此查询从用户顶点选择手机

userModel.find(phone)
.then(function(phonelist){
if(!phonelist)
console.log('msg: RECORD_NOT_FOUND');
else
console.log(phonelist);
.catch(function(err){ console.log('err: 'err'); });

最佳答案

是的,这是可能的,您只需将 select 添加到您的搜索条件,例如(假设您正在搜索 id 为 1 的记录):

userModel.find({ select: ['phone'], id: 1 })

或者:

userModel.find({ select: ['phone'], where: { id: 1 } })

或者,如果您想要所有记录,则无需提供条件:

userModel.find({ select: ['phone'] })

这似乎没有在任何地方记录,但它应该记录。在版本 0.11 中,还可以通过执行 model.pick('name', 'age') 来定义 select:https://github.com/balderdashy/waterline/pull/952

关于waterline - 从数据库中选择特定字段,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29768682/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com