abel533 / Mapper

Mybatis Common Mapper - Easy to use
https://mybatis.io
MIT License
7.32k stars 1.63k forks source link

updateByPrimaryKeySelective 超过1个唯一索引时,where语句有问题 #851

Closed CodeInDreams closed 2 years ago

CodeInDreams commented 2 years ago

MySQL,主键id+另一唯一索引abc,生成的SQL where语句应该是 WHERE id=xxx AND abd=yyy,但实际却是 WHERE id=xxx AND abd=yyy AND col3=... AND col4=... AND ...