Sqlserver中:group by 只能在聚合函数中使用吗?

2024-11-27 02:23:06
推荐回答(3个)
回答1:

不一定
group by 两种用法
select a, sum(b) from tab group by a

select a, b from tab group by a , b

回答2:

如果不和聚合函数一起使用的话,和distinct是等效的,还不如直接写distinct呢。

回答3:

WHERE