gpt4 book ai didi

mysql - 如何将 mysql 查询转换为 sequelize?

转载 作者:行者123 更新时间:2023-11-30 21:41:14 24 4
gpt4 key购买 nike

测试表

p_id   p_type   name
----------------------------------
100 Y hong
101 Y kim
200 N park
201 N John

我想在测试表中插入“102 Y choi”。

mysql查询

insert into test(p_id,p_type,name) 
select (max(p_id)+1),'Y','choi' from test where p_type='Y'

sequelize 中的等效查询是什么?

最佳答案

除了在事务中进行两次查询外,我看不到任何其他选项:

sequelize.transaction(t => {
Test.findAll({
order: [['p_id', 'DESC']],
where: { p_type: 'Y' },
limit: 1
}, {transaction: t}).then(maxTest=>{
const max = (maxTest[0] || {p_id: 0}).p_id + 1;
return Test.create({
p_id: max,
p_type: 'Y',
name: 'choi'
}, {transaction: t})
})
})

关于mysql - 如何将 mysql 查询转换为 sequelize?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51446280/

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