Tagged Questions
Aggregate functions are a subset of SQL functions that compute a single value from multiple input rows, mostly used in `SELECT` queries with a `GROUP BY` clause. Practically all modern RDBMS feature aggregate functions. Typical examples include `COUNT()`, `SUM()`, `MIN()`, `MAX()`, and `AVG()`.
24
votes
12answers
21k views
Function to Calculate Median in Sql Server
According to MSDN, Median is not available as an aggregate function in Transact-Sql. However, I would like to find out whether it is possible to create this functionality (using the Create Aggregate ...
18
votes
3answers
3k views
Aggregate Relational Algebra (Maximum)
I am currently working on a homework assignment that requires a selection to occur that pulls out an element containing a specific attribute of maximum value compared to all other records. I've read a ...
17
votes
6answers
37k views
MySQL: Select N rows, but with only unique values in one column
Given this data set:
ID Name City Birthyear
1 Egon Spengler New York 1957
2 Mac Taylor New York 1955
3 Sarah Connor Los Angeles 1959
4 ...
13
votes
4answers
6k views
SQL Server: Difference between PARTITION BY and GROUP BY
I've been using GROUP BY for all types of aggregate queries over the years. Recently, I've been reverse-engineering some code that uses PARTITION BY to perform aggregations. In reading through all ...
10
votes
2answers
6k views
Extra Fields with SQL MIN() & GROUP BY
When using the SQL MIN() function, along with GROUP BY, will any additional columns (not the MIN column, or one of the GROUP BY columns) match the data in the matching MIN row?
For example, given a ...
9
votes
2answers
256 views
Explain R tapply description
I understand what tapply() does in R. However, I cannot parse this description of it from the documentaion:
Apply a Function Over a "Ragged" Array
Description:
Apply a function to each cell ...
9
votes
3answers
237 views
The most useful User-Defined Aggregate Functions
Do you have any aggregate functions that you have implemented because the standard ones were not good enough?
8
votes
1answer
108 views
MySQL aggregate function problem
In the following example, why does the min() query return results, but the max() query does not?
mysql> create table t(id int, a int);
Query OK, 0 rows affected (0.10 sec)
mysql> insert into ...
7
votes
3answers
178 views
Need to Improve Performance of SQL Query using Aggregate Functions
I have a particular SQL query that seems to suffer from a mysterious performance issue. Here is the query:
SELECT COUNT(LengthOfTime) AS TotalTime,
SUM(LengthOfTime) AS TotalLength,
...
7
votes
3answers
5k views
LINQ to SQL: Complicated query with aggregate data for a report from multiple tables for an ordering system
I want to convert the following query into LINQ syntax. I am having a great deal of trouble managing to get it to work. I actually tried starting from LINQ, but found that I might have better luck ...
6
votes
5answers
85 views
MySQL GROUP BY UNIX TIMESTAMP
I'm trying to fetch a number of rows from a MySQL database and group them by the day they were posted.
End result I would like the following..
Monday
-Article 1
-Article 2
-Article 3
Tuesday
...
6
votes
4answers
171 views
select more than one count in mysql
Is it possible in MySQL to do something like this:
SELECT COUNT(*) as totalcount,
COUNT(*) WHERE foo IS NULL as conditional_count
FROM baz
i.e. get two counts, one of everything, and one ...
6
votes
3answers
1k views
Custom aggregate function (concat) in SQL Server
Question: I want to write a custom aggregate function that concatenates string on group by.
So that I can do a
SELECT SUM(FIELD1) as f1, MYCONCAT(FIELD2) as f2
FROM TABLE_XY
GROUP BY FIELD1, ...
6
votes
6answers
280 views
Only keep min value for each factor level
I got a problems that bugs me for some time⦠hopefully anybody here can help me.
I got the following data frame
f <- c('a','a','b','b','b','c','d','d','d','d')
v1 <- ...
6
votes
2answers
240 views
COUNT and GROUP BY on text fields seems slow
I'm building a MySQL database which contains entries about special substrings of DNA in species of yeast. My table looks like this:
+--------------+---------+------+-----+---------+-------+
| Field ...
6
votes
4answers
891 views
Is it possible to perform a bitwise group function?
I have a field in a table which contains bitwise flags. Let's say for the sake of example there are three flags: 4 => read, 2 => write, 1 => execute and the table looks like this*:
user_id ...
6
votes
4answers
9k views
MYSQL : First and last record of a grouped record (aggregate functions)
I am trying to do fectch the first and the last record of a 'grouped' record. More precisely, I am doing a query like this
SELECT MIN(low_price), MAX(high_price), open, close
FROM symbols
WHERE date ...
5
votes
3answers
70 views
LINQ aggregate and group by periods of time
I'm trying to understand how LINQ can be used to group data by intervals of time; and then ideally aggregate each group.
Finding numerous examples with explicit date ranges, I'm trying to group by ...
5
votes
1answer
185 views
PostgreSQL: running count of rows for a query 'by minute'
I need to query for each minute the total count of rows up to that minute.
The best I could achieve so far doesn't do the trick. It returns count per minute, not the total count up to each minute:
...
5
votes
3answers
235 views
Mend reshape-based habits with plyr: melt/cast vs. ddply
I'm kind-of used to do melt and cast all the time, and this time I'm looking for neat one-liner.
require(reshape)
# first I melt some data:
m <- melt(mtcars, id.vars = c("cyl", "am"), measure.vars ...
5
votes
3answers
165 views
Redundant Sorting for Aggregate Grouped-By Monotonic Function
I'm developing a query against a table that contains a bunch of points in a time series. The table can grow quite large, and so I want the query to effectively downsample the output by averaging ...
5
votes
3answers
172 views
List of aggregate functions
Is there a way to fetch list of aggregate functions supported by a dbms using jdbc metadata or running any dbms specific query?
Thanks in advance
5
votes
4answers
315 views
SQL Group By function(column) - Now can't Select that column
I used the HR employee schema in Oracle Express and I wanted to select employees that were hired on a particular year.
SELECT hire_date,
COUNT(*)
FROM employees empl
GROUP BY ...
5
votes
3answers
109 views
Running queries on tables with more than 1million rows in
I am indexing all the columns that I use in my Where / Order by, is there anything else I can do to speed the queries up?
The queries are very simple, like:
SELECT COUNT(*)
FROM TABLE
WHERE ...
5
votes
7answers
157 views
Find row with maximum value of id in MySQL
Take a look at the MySQL table below called "Articles":
+----+-----------+---------+------------------------+--------------------------+
| id | articleId | version | title | content ...
5
votes
2answers
1k views
Does GQL support commonly available SQL Style aggregation?
What I'm looking for a simple Aggregate Functions that are widely available in versions of SQL.
Simple things like Select Count(*) from table1 to the more complex.
If these are available, is there ...
4
votes
3answers
229 views
SQL Server: collect values in an aggregation temporarily and re-use in the same query
How do I accumulate values in T-SQL? AFAIK there is no ARRAY type.
I want to re-use the values in the same query like demonstrated in this PostgreSQL example using array_agg().
SELECT a[1] || a[i] AS ...
4
votes
6answers
80 views
Sql Server - Selecting Logical Results in a Query
Suppose I have a table: ACCOUNT
It has columns: ID, NAME, BALANCE
I want to determine if the SUM of balances of people who has balance more than $ 2,000 is greater than $ 50,000. It means I want to ...
4
votes
2answers
170 views
Adding aggregate function to external H2 database (SOLVED)
Hello experts of the world :)
I'm trying to create an aggregate function in my H2 database using Java.
The function should return a custom median calculation from the given Double column.
This ...
4
votes
2answers
182 views
MongoDB: Calling Count() vs tracking counts in a collection
I am moving our messaging system to MongoDB and am curious what approach to take with respect to various stats, like number of messages per user etc. In MS SQL database I have a table where I have ...
4
votes
1answer
73 views
Somewhat Complex MySQL Statement
I am creating a forum, and have gotten stuck creating the page that will display all the topics for a given forum. The three relevant tables & fields are structured as follows:
Table: ...
4
votes
5answers
159 views
Are there any specialized databases for aggregate queries?
Are there any specialized databases - rdbms, nosql, key-value, or anything else - that are optimised for running fast aggregate queries or map-reduces like this over very large data sets:
select ...
4
votes
2answers
154 views
T-SQL Group By Problem
I've got the following Problem (or maybe just a thinking barrier):
I've got a table (actually a view from a table) with the following columns and data:
Now i want to Group this data by the column ...
4
votes
4answers
97 views
Pull row with lowest number in a column
I have two columns called topic_id and post_id, and what I want to do is find every row where the topic_id is the lowest for each post ID.
For example
topic_id post_id
1 5
2 5
3 8
4 8
So it would ...
4
votes
2answers
67 views
how to create this query
how to create a query if i need to include two aggregate function in select row and per each function i need different group by and where conditions
in my example i need to returns the playerName, ...
4
votes
1answer
117 views
Return a sum of values common to an attribute in sql?
I have some rows that looks like this:
name value
------------
Name 1
Name 2.8
Name 8
I want my return to be one row:
name value
------------
Name 11.8
How do I force this to be the case? ...
4
votes
3answers
1k views
SELECTING with multiple WHERE conditions on same column
Ok, I think I might be overlooking something obvious/simple here... but I need to write a query that returns only records that match multiple criteria on the same column...
My table is a very simple ...
4
votes
3answers
269 views
In SQL, how do I get all rows where a column's value is the lowest in the table?
I am a newbie to SQL, I am using this query to look for the minimum value in the field weight of my table.
SELECT product_id,
MIN(weight)
FROM table
WHERE 1;
It does show one field ...
4
votes
1answer
317 views
Selecting same column with different where conditions
This query returns the sum of "closed" daily sales for a particular salesperson within a particular date range:
SELECT SUM(price) as closed_total
FROM dbo.Sales
WHERE salesperson_ID = ...
4
votes
3answers
5k views
Multiple aggregate functions in one SQL query from the same table using different conditions
I'm working on creating a SQL query that will pull records from a table based on the value of two aggregate functions. These aggregate functions are pulling data from the same table, but with ...
4
votes
1answer
100 views
How to present features of aggregate functions (NULL)?
I'm looking for 'textbook' example of database to illustrate salient features of the aggregate functions (Max, Min, Sum, Avg and Count) when NULL values are involved.
I must be able to discuss and ...
4
votes
2answers
4k views
Oracle Function: Replicate wm_concat
I currently am working on a project within Crystal Reports that refuses to use the undocumented function WM_CONCAT, which is allowable within Oracle 10g.
Here is the WM_CONCAT header information
...
4
votes
5answers
1k views
Multiple SUM using LINQ
I have a loop like the following, can I do the same using multiple SUM?
foreach (var detail in ArticleLedgerEntries.Where(pd => pd.LedgerEntryType == LedgerEntryTypeTypes.Unload &&
...
4
votes
3answers
652 views
Is there a way to do aggregate functions on Google App Engine?
One of the nice things relational databases support are the aggregate functions like count, sum, avg etc. But it seems that if you are using GAE, when inserting or updating a record you must calculate ...
4
votes
2answers
3k views
SQL Server 2005 Computed Column Result From Aggregate Of Another Table Field's Value
Sorry for the long question title.
I guess I'm on to a loser on this one but on the off chance.
Is it possible to make the calculation of a calculated field in a table the result of an aggregate ...
3
votes
2answers
67 views
PostgreSQL function with a loop
I'm not good at postgres functions. Could you help me out?
Say, I have this db:
name | round |position | val
-----------------------------------
A | 1 | 1 | 0.5
A | 1 ...
3
votes
2answers
57 views
Trimmed mean calculation in MySQL
I want to write a function that calculates a simple trimmed mean calculation in MySQL. The function will (obviously) be an aggregate function. I am new to writing functions etc in MySQL so could do ...
3
votes
1answer
63 views
Precision of aggregate function on 'INTERVAL HOUR TO MINUTE' datatype in SQL
I'm running a very small database that contains a table with a column containing data of type INTERVAL HOUR TO MINUTE. Although this means the table will only store time intervals with minute ...
3
votes
3answers
72 views
Is it possible to have an SQL query that uses AGG functions in this way?
Assuming I have the following aggregate functions:
AGG1
AGG2
AGG3
AGG4
Is it possible to write valid SQL (in a db agnostic way) like this:
SELECT [COL1, COL2 ....], AGG1(param1), AGG2(param2) ...
3
votes
3answers
172 views
MySQL how to select 1 if MAX() equals current row SUM() aggregate value?
I'd like to select a new column named sliced (value can be 1/0 or true/false it doesn't matter) if area of the current row equals MAX(SUM(c.area)), that is flag the row with highest aggregate value:
...