Is it possible to use Aggregate function in a Sele

2020-02-27 13:01发布

So far I have written Aggregate function followed by Group By clause to find the values based on SUM, AVG and other Aggregate functions. I have a bit confusion in the Group By clause. When we use Aggregate functions what are the columns I need to specify in the Group By clause. Otherwise Is there any way to use Aggregate functions without using Group By clause.

6条回答
冷血范
2楼-- · 2020-02-27 13:36

Yes you can use an aggregate without GROUP BY:

SELECT SUM(col) FROM tbl;

This will return one row only - the sum of the column "col" for all rows in tbl (excluding nulls).

查看更多
▲ chillily
3楼-- · 2020-02-27 13:38

You must group by columns that do not have aggregate functions on them.

You may avoid a group by clause if all columns selected have aggregate functions applied.

查看更多
啃猪蹄的小仙女
4楼-- · 2020-02-27 13:40

You can use Select AGG() OVER() in TSQL

SELECT *,
SUM(Value) OVER()
FROM Table

There are other options for Over such as Partition By if you want to group:

SELECT *,
SUM(Value) OVER(PARTITION By ParentId)
FROM Table

http://msdn.microsoft.com/en-us/library/ms189461.aspx

查看更多
叼着烟拽天下
5楼-- · 2020-02-27 13:40

The Columns which are not present in the Aggregate function should come on group by clause:

Select 
Min(col1), 
Avg(col2), 
sum(col3) 
from table

then we do not required group by clause, But if there is some column which are not present in the Aggregate function then you must use group by for that column.

Select 
col1, 
col2, 
sum(col3) 
from  table 
group by col1,col2

then we have to use the group by for the column col1 and col2

查看更多
\"骚年 ilove
6楼-- · 2020-02-27 13:41

All columns in the SELECT clause that do not have an aggregate need to be in the GROUP BY

Good:

SELECT col1, col2, col3, MAX(col4)
...
GROUP BY col1, col2, col3

Also good:

SELECT col1, col2, col3, MAX(col4)
...
GROUP BY col1, col2, col3, col5, col6

No other columns = no GROUP BY needed

SELECT MAX(col4)
...

Won't work:

SELECT col1, col2, col3, MAX(col4)
...
GROUP BY col1, col2

Pointless:

SELECT col1, col2, col3, MAX(col4)
...
GROUP BY col1, col2, col3, MAX(col4)

Having an aggregate (MAX etc) with other columns without a GROUP BY makes no sense because the query becomes ambiguous.

查看更多
Bombasti
7楼-- · 2020-02-27 13:43

You omit columns from the SELECT inside aggregate functions, all other columns should exist in GROUP BY clause seperated by comma.

You can have query with aggregates and no group by, as long as you have ONLY aggregate values in the SELECT statement

查看更多
登录 后发表回答