问答详情
源自:-

mybatisPlus怎么执行带聚合函数的sql?

UPDATE user SET picPath=replace(`picPath`, '127.0.0.1', '192.168.0.1') ;

如上,我要用mybatisPlus执行这条sql,包装器是否能封装成这样的对象?如果能,该怎么处理?


提问者:流光苍穹 2020-05-10 14:49

个回答

  • 老猿
    2020-05-12 17:25:06
    已采纳

    sql语句只要正确,应该都能写出来,你试试例如这样写是否可行

    UpdateWrapper<User> updateWrapper = new UpdateWrapper<>();
    updateWrapper.set("picPath","replace(`picPath`, '127.0.0.1', '192.168.0.1')");