根据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的主要内容,如果未能解决你的问题,请参考以下文章