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
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
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
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 | …
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
6answers
163 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
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 …
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
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 …
0
votes
2answers
264 views
Getting non-existant month/week/year when using MySql group by clause with month/week/year date functions.
I am trying to implement a query where I am using aggregates to sum certain values and then group by mysql date functions (month | year | week). Those group by clauses don't return non-existant months …
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
…
0
votes
1answer
35 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
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?
0
votes
1answer
63 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 …
