永发信息网

sql中用update更新count数据的问题

答案:3  悬赏:80  手机版
解决时间 2021-03-08 14:53
  • 提问者网友:遁入空寂
  • 2021-03-08 01:56
sql中用update更新count数据的问题
最佳答案
  • 五星知识达人网友:野味小生
  • 2021-03-08 03:23
update user a set a.posts=
(select
b.counts
from
(select authorid,count(*) counts from post group by authorid) b
where a.uid=b.authorid)
全部回答
  • 1楼网友:洒脱疯子
  • 2021-03-08 04:41
update user set posts = (select count(1) from post where authorid = user.uid)
  • 2楼网友:山君与见山
  • 2021-03-08 04:35
INSERT INTO user(uid,posts) (SELECt authorid,COUNT(authorid) FROM POST GROUP BY authorid)
解决问题!
我要举报
如以上回答内容为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
点此我要举报以上问答信息
大家都在看
推荐资讯