0

我有一个表,其中的数据如下:-

ExtensionRequestId PipelineId

   1                1
   2                1
   3                2
   4                1
   5                2
   6                3

现在我想计算重复的 PipelineId 的数量。我怎样才能做到这一点?

谢谢

4

1 回答 1

1

select pipelineId, count(pipelineId) from table group by pipelineId

table是你的桌子的名字!

于 2013-02-14T12:19:22.100 回答