gpt4 book ai didi

postgresql - 带有多个参数的 db.raw 和 knex

转载 作者:行者123 更新时间:2023-11-29 11:56:52 25 4
gpt4 key购买 nike

这实际上适用于 knex:

knex.raw('select * from users where id = ?', [1])

我尝试使用多个值作为参数,重复其中一些。像这样:

knex.raw('select * from users where id = 1? and name = 2? and firstName = 2?', [1, 'someName'])

我怎样才能做到这一点?

最佳答案

你也可以这样做:

var params = {x1:1,dude:10};
return knex.raw("select * from foo where x1 = :x1 and dude = :dude",params);

这不是第一个示例,但已记录在案 here .

关于postgresql - 带有多个参数的 db.raw 和 knex,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30945104/

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