6
votes
12answers
1k views
How do I return my records grouped by NULL and NOT NULL?
I have a table that has a processed_timestamp column -- if a record has been processed then that field contains the datetime it was processed, otherwise it is null.
I want to write a query that …
5
votes
2answers
3k views
C# List<> GroupBy 2 Values
I'm using C# on Framework 3.5. I'm looking to quickly group a Generic List<> by two properties. For the sake of this example lets say I have a List of an Order type with properties of CustomerId, …
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,
…
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
3
votes
4answers
413 views
How do I order a Group result, in Linq?
Hi folks,
I have the following linq query, which works fine. I'm not sure how i order the group'd result.
from a in Audits
join u in Users on a.UserId equals u.UserId
group a by a.UserId into g
…
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 …
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?
2
votes
4answers
225 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, …
2
votes
4answers
238 views
Inserting increment for each unique value in sql.
Hello, I've been tasked with a SQL problem that is outside of the limited scope of sql knowledge that I have. I have the following problem.
I have a table that currently looks like this:
widgets
…
2
votes
1answer
272 views
Using Linqdatasource and groupby property
I have a Linqdatasource that groups the records in table:Routing by a field called SubmitTo. My select statement is this - "new (key as SubmitTo, Count() as Count, it as Routings)". Now the SubmitTo …
2
votes
7answers
485 views
MySQL - Control which row is returned by a group by.
I have a database table like this:
id version_id field1 field2
1 1 texta text1
1 2 textb text2
2 1 textc text3
2 2 …
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
…
1
vote
4answers
183 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 …
1
vote
1answer
278 views
Conditional Group By statement using LINQ
I have what seems to be a fairly simple requirement, but looking around I'm not able to get a simple answer for this. I have looked on MSDN forums, Exper Exchange and nothing substantial was given to …
1
vote
5answers
175 views
Getting single records back from joined tables that may produce multiple records
I've got a student table and an enrollment table; a student could have multiple enrollment records that can be active or inactive.
I want to get a select that has a single student record and an …
