如何在SQL Server 2014中显示与countif类似的结果

时间:2015-06-17 20:47:00

标签: sql-server-2014

我正在尝试计算SQL Server中的记录,并使用Countif函数获得与Excel中相同的结果。

我尝试过Count(*)和其他不同的方法来计算SQL Server中的记录,但无法获得相同的结果。

是否有一个函数或逻辑可以让我获得类似于下表所示的结果?

enter image description here

1 个答案:

答案 0 :(得分:1)

使用窗口功能:

select Fruits, count(*) over(partition by Fruits) as Counts
from TableName