Tagged Questions

0
votes
1answer
13 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 …
3
votes
2answers
61 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
81 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
15 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 | …
0
votes
1answer
22 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
2answers
26 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
vote
2answers
70 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 …
3
votes
1answer
63 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
162 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[] { …
0
votes
1answer
29 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
34 views

Linq to Objects: does GroupBy preserve order of elements?

Does Enumerable.GroupBy from LINQ to Objects preserve order of elements in the groups?
1
vote
4answers
139 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    &n …
0
votes
4answers
535 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
1answer
53 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 …
0
votes
2answers
294 views

Multi column distinct in mysql

| one | two | ------------- | A | 1 | | A | 2 | | B | 1 | | B | 3 | | C | 1 | | C | 4 | I would like to get no repeats in any column in a query, so the st …

1 2 3 next
15 30 50 per page