作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
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/
我是一名优秀的程序员,十分优秀!