就需要用到union和union all关键字来实现这样的功能,union和union all的主要区别是union all是把结果集直接合并在一起,而
union 是将union all后的结果进行一次distinct,去除重复的记录后的结果。
update aaaset url=concat(
select a.slug from (SELECT slug from aaa where id = (SELECT max(id) FROM aaa)
) a,':',url)
本身mysql 是不建议直接先查询本表再更新本表的,但是这种方法可以绕过去,你可以试下
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)