Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

87
votes
3answers
32k views

Group By Multiple Columns - LINQ

How can I do GroupBy Multiple Columns in LINQ Something as in SQL : SELECT * FROM <TableName> GROUP BY <Column1>,<Column2> How Can i convert below to LINQ ...
2
votes
4answers
242 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, ...
1
vote
2answers
257 views

How to include BIT type column in SELECT part with out including it on the GROUP BY in T-SQLl?

Here is my T-SQL query SELECT ProductID, VendorID, ProductName= MAX(ProductName), VendorName = MAX(VendorName), IsActive = MAX(IsActive) # This brings error FROM ...
0
votes
3answers
38 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
56 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 ...
0
votes
2answers
52 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 ...
0
votes
2answers
147 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 ...
0
votes
1answer
142 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
115 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
132 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 ...
0
votes
1answer
226 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 ...
0
votes
3answers
3k 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 ...