Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个有 2 列的表, user 和 userMessage 表名为Messages 我有另一个表有 2 列作为 user 和 userMessageCount 表名为MessageCount。我对编程很陌生。我需要编写一个更新查询或程序来计算来自Messages的每个用户的消息数并将计数存储在MessageCount中。
我无法理解这样做的正确方法。我知道这是一个非常基本的问题,我应该研究解决这个问题。我在截止日期前跑得很晚。请帮我解决这个问题。
Insert Into MessageCount Select user, count(*) From Messages Group by user