使用sql concat拼接更新语句

Posted hy7873

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用sql concat拼接更新语句相关的知识,希望对你有一定的参考价值。

例子:

select a.id,concat(‘update sljr_jrxj.loan_borrow set status=3,fadada_status=0 where borrow_user_id=‘,a.id,‘ and borrow_nid=‘‘‘,borrow_nid,‘‘‘;‘)
from sljr_jrxj.user a
inner join sljr_jrxj.loan_borrow b on a.id=b.borrow_user_id
inner join sljr_jrxj.real_user c on a.id=c.user_id
where
b.`status`=0 and b.fadada_status=0 and
b.order_source=‘39‘ and
a.mobile in
(
‘18993037575‘)










以上是关于使用sql concat拼接更新语句的主要内容,如果未能解决你的问题,请参考以下文章

MySQL的sql语句如何将一列数据拼接成一个字符串?

MySQL中limit使用动态参数的解决方法(拼接SQL字符串语句来执行SQL)

oracle wm_concat 拼接乱码 显示问号等

sql语句拼接字段后再模糊查询如何写啊?

MySQL常用拼接语句

MySQL拼接字符串,GROUP_CONCAT 值得拥有