Tagged Questions

2
votes
1answer
33 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 prop …
0
votes
3answers
23 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 pers …
0
votes
3answers
38 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 t …
0
votes
1answer
22 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 …
0
votes
1answer
21 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 | …
3
votes
2answers
68 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, get_distan …
0
votes
6answers
122 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
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 ----------------------------------------------- …
0
votes
1answer
61 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 …
0
votes
4answers
576 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. …
0
votes
2answers
246 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 …
1
vote
2answers
71 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 Cate …
0
votes
1answer
30 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 amoun …
2
votes
1answer
42 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 u …

1 2 3 next
15 30 50 per page