2
votes
1answer
38 views
C# 2.0 - Is there any way to do a `GroupBy` with a yielded itterator block?
I'm working with a C# 2.0 app so linq/lambda answers will be no help here.
Basically I'm faced with a situation where i need to yield return an object but only if one if it's properties is unique …
0
votes
3answers
32 views
LINQ - join , group by (multiple fields), group by, select new some fields
Hi, i need select some fields from a table in the query using join, but in the select new statement i dont have acess from the fields of the join table.
var query = from p in …
0
votes
3answers
40 views
LINQ : understanding and excecute Groupby to bring back unique rows?
Hi there,
i am trying to do a groupby in linq, basically i have a list ( along list - around 1000 entries) and i wish to groupby Description.
The entries are vehicles, so hence there are 50 or so …
0
votes
1answer
28 views
Key comparisons for Linq GroupBy using Default EqualityComparer
I'm trying to do a Linq GroupBy on some objects using an explicit key type. I'm not passing an IEqualityComparer to the GroupBy, so according to the docs:
The default equality comparer Default is …
0
votes
1answer
23 views
Group by in SQLite over one subset of a set based on the elements of another subset of the set…
I have a dataset something like this
A | B | C | D | E
-----------------------------------------------
1 | Carrot | <null> | a | 111
2 | …
3
votes
2answers
70 views
MySQL syntax group by restaurant with cheaper menu
Hi everyone !
Here is my SQL request on MySQL (MySQL: 5.0.51a). I want have a list of restaurant with his cheaper menu:
select r.id, rm.id, rm.price, moyenne as note,
…
0
votes
6answers
131 views
Sql query to Group by day
I want to list all sales, and group the sum by day.
Sales (saleID INT, amount INT, created DATETIME)
Update
I am using SQL Server 2005
0
votes
1answer
64 views
MySQL select sum with group by gives integer results
I have 2 tables:
CREATE TABLE `product_det` (
`id` bigint(12) unsigned NOT NULL AUTO_INCREMENT,
`prod_name` varchar(64) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
…
0
votes
2answers
31 views
LINQ and Grouping from a simple SQL DB relationship
I have two tables with the following layout and relationships:
Tasks:
TaskID StartTime EndTime TaskTypeID ProductionID
------------------------------------------------------------
1 …
1
vote
2answers
72 views
SQL to show all entries within a number of categories
Hi,
I'm writing an sql query on three tables which finds and displays categories and all the entries within each category
For example
Category 1
post 1
post 2
post 3
post 4
Category 2
post 5
post 6
…
0
votes
1answer
32 views
How to get away with non-grouping field in HAVING clause
When executing in *ONLY_FULL_GROUP_BY* mode, I get the error "non-grouping field 'distance' is used in HAVING clause" when executing the following query. The query counts the amount of hotels that are …
2
votes
1answer
43 views
Linq to Objects: does GroupBy preserve order of elements?
Does Enumerable.GroupBy from LINQ to Objects preserve order of elements in the groups?
0
votes
1answer
58 views
Group by string optimization
I'm gonna convert string to integer to optimize group by performance.
What do you guys think of the idea?
If applicable,then is there a built-in function to convert string to a unique integer in …
3
votes
1answer
71 views
How does MySQL decide which id to return in group by clause?
Such as this one:
SELECT id, count( * ) , company
FROM jobs
GROUP BY company
Where id is the primary key of jobs
2
votes
4answers
195 views
LINQ C# - Combining multiple groups
LINQ Groupby query creates a new group for each unique key. I would like to combine multiple groups into a single group based on the key value.
e.g.
var customersData = new[]
{
new { id = 1, …
