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 に答える