我想用" updateAll"更新特定的id属性方法。可能吗?
Model.updateAll({userId:10}, {userId:5, name:'test'}, function (...
"用户ID"是model.json中的id属性
sql语法
update table set name='test' where userId=10
为什么不能像这样更新userId?
update table set name='test' and userId=5 where userId=10