2
votes
1answer
44 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
49 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
45 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
78 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
3answers
70 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
6answers
165 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
3
votes
2answers
74 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
1answer
35 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 | …
0
votes
2answers
35 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
80 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
…
2
votes
4answers
227 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, …
3
votes
1answer
74 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
0
votes
4answers
606 views
SQL Server 2005 error when grouping using subquery.
Using SQL Server 2005 I'm trying to group based on a case statement with a subquery, but I'm getting an error ("Each GROUP BY expression must contain at least one column reference.
"). I can work …
1
vote
4answers
184 views
Group by variable integer range using Linq
I'm trying to group a set of data based on the range of an integer, by the range does not increase at a fixed interval.
e.g. I have
Item ID Price
1 …
2
votes
1answer
49 views
Linq to Objects: does GroupBy preserve order of elements?
Does Enumerable.GroupBy from LINQ to Objects preserve order of elements in the groups?
