根据select出来的数据进行update

Posted xinzhyu

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了根据select出来的数据进行update相关的知识,希望对你有一定的参考价值。

update 
  t_tbl_desc
set 
  num=b.num
from
  t_tbl_desc a,
  (select distinct(name) as name,count(name) num  from t_col_desc  group by name)b
where
   a.name=b.name

 

以上是关于根据select出来的数据进行update的主要内容,如果未能解决你的问题,请参考以下文章

数据库中Select For update语句的解析

MySQL的SELECT.FOR UPDATE究竟起啥作用

SQL里怎么用UPDATE更新大量SELECT数据?

为什么 SELECT FOR UPDATE 只在事务中起作用

select 时进行update的操作,在高并发下引起死锁

转载SQL update select结合语句详解及应用