The agreggate tag has no wiki summary.
0
votes
1answer
96 views
How do agregate functions in MS Access effect 'odd' field types?
I'm having trouble with MS Access. I have boolean and Memo type fields and I'm using aggregate functions (Group by etc). The Bools give information about a survey result, and the memo field explains ...
0
votes
3answers
93 views
Aggregate values from first and last row
I have a USERS table.
Each user has connections in a CONNECTIONS table.
Each connection has a datetime and some referenced properties like timezone, stored in a TZ reference table.
I'd like to ...
0
votes
2answers
66 views
What is the best way to return agregate column with non agregate column in result set of a view
I need to compare the final balances of two tables from different clients grouped by ID. The tables have the same ID's But one has multiple ID entries and the other does not. I need to sum row from ...
1
vote
2answers
280 views
LINQ - Grouping objects with count of type
I have a collection of objects that each defined by a particular "group". How can I write a LINQ query to produce a count of each object grouped by "group".
As an example, lets say I have the ...
2
votes
2answers
2k views
How to include BIT type column in SELECT part with out including it on the GROUP BY in T-SQL?
Here is my T-SQL query
SELECT
ProductID,
VendorID,
ProductName= MAX(ProductName),
VendorName = MAX(VendorName),
IsActive = MAX(IsActive) # This brings error
FROM ...
2
votes
2answers
518 views
How can I use LINQ and lambdas to perform a bitwise OR on a bit flag enumeration property of objects in a list?
I have a collection of objects, and each object has a bit field enumeration property. What I am trying to get is the logical OR of the bit field property across the entire collection. How can I do ...
1
vote
1answer
357 views
Mysql min function on a column and an integer
I've got a table which contains a column named size.
I want with a min function to find the min value of size and a set of integer.
For example :
Size can be : 5, 10, 15
And I want to find the min ...
0
votes
1answer
146 views
DDD - aggregate roots in a very simple blog model
As an exercise I am trying to create a simple blog app in .NET, employing DDD. So far I have User, Topic and Comment classes. But the problem is how to link Comment with User and Topic? If I say that ...
0
votes
3answers
184 views
How to get the max value of a field without grouping in MySql
I have a query with many wheres and orders criterias. One of the fields of the select is 'price' (element price) but I would like to have also (in every row) the maximun price of all the selected ...
2
votes
4answers
1k views
CONNECT BY for two tables with two JOINS
I have 3 tables:
- two with hierarchical structures
(like "dimensions" of recursive type of hierarchy);
- one with summing data (like "facts" with X column).
There are here:
1) DIM1 (ID1, ...
0
votes
1answer
301 views
Stored Procedure in postgresql, multiple queries w/ agreggates
I'm trying to write a store procedure that can take some input parameters (obviously), run multiple queries against those, taking the output from those and doing calculations, and from those ...
2
votes
4answers
16k views
Sql Server : How to use an aggregate function like MAX in a WHERE clause
I want get the maximum value for this record. Please help me:
SELECT rest.field1
FROM mastertable AS m
INNER JOIN (
SELECT t1.field1 field1,
t2.field2
...
236
votes
3answers
84k views
Group By Multiple Columns
How can I do GroupBy Multiple Columns in LINQ
Something similar to this in SQL:
SELECT * FROM <TableName> GROUP BY <Column1>,<Column2>
How can I convert this to LINQ:
...