日期:2014-05-17  浏览次数:20447 次

sql server 08的问题 group by 1
select store_name,sum(sales)
from Store_Information
group by 1
这样写应该没问题吧,为什么执行的时候会提示“每个 GROUP BY 表达式必须至少包含一个不是外部引用的列”?

------解决方案--------------------
探讨
其实问题很简单,就是这里能不能用group by 1代替group by store_name,
group by有没有这个用法

------解决方案--------------------
探讨
其实问题很简单,就是这里能不能用group by 1代替group by store_name,
group by有没有这个用法

------解决方案--------------------
探讨

其实问题很简单,就是这里能不能用group by 1代替group by store_name,
group by有没有这个用法

------解决方案--------------------
探讨

group by 1也是可以按select 中的第一列分组的吧