active questions tagged groupby - Stack Overflow most recent 30 from stackoverflow.com 2009-12-15T20:43:06Z http://stackoverflow.com/feeds/tag/groupby http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1756676/c-2-0-is-there-any-way-to-do-a-groupby-with-a-yielded-itterator-block 2 C# 2.0 - Is there any way to do a `GroupBy` with a yielded itterator block? Stimul8d 2009-11-18T15:12:11Z 2009-11-18T15:38:47Z <p>I'm working with a C# 2.0 app so linq/lambda answers will be no help here.</p> <p>Basically I'm faced with a situation where i need to <code>yield return</code> an object but <strong>only</strong> if one if it's properties is unique (Group By). For example,..say i have a collection of users and i want a grouped collection based on name (i might have 20 Daves but I'd only want to see one in my collection).</p> <p>Now i can think of a bunch of situations where this might be useful but I don't think it's possible in C# 2.0 without my explicitly keeping track of what I'm yielding with another internal list. To do it without I'd need to have access to the previously yielded set to check if they exist.</p> <p>Am I over-thinking this or does it make sense? Maybe having access to the yield through the <code>IEnumerable&lt;T&gt;</code> interface would make sense so you'd be able to do something like this-</p> <pre><code>IEnumerable&lt;User&gt; UsersByNameGroup(User userToGroupBy) { foreach(User u in Users) { if(!yield.Find(delegate(User u){return u.Name == userToGroupBy.Name;})) yield return u; } } </code></pre> <p>All help will be appreciated.</p> <p>Thanks in advance.</p> http://stackoverflow.com/questions/1709639/linq-join-group-by-multiple-fields-group-by-select-new-some-fields 0 LINQ - join , group by (multiple fields), group by, select new some fields Kaneda 2009-11-10T17:19:35Z 2009-11-10T20:03:51Z <p>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.</p> <pre><code>var query = from p in persistencia.RequisicaoCompraItems </code></pre> <p>join s in persistencia.Suprimentos on p.SuprimentoID equals s.SuprimentoID </p> <p><strong>(i need get fields from this join)</strong></p> <p>group p by new {p.SuprimentoID, p.RequisicaoCompraItemID, p.RequisicaoCompraID } into x</p> <pre><code> from res in x orderby x.Key.SuprimentoID select new {res.SuprimentoID , res.RequisicaoCompraItemID, **but in here i cant acess** }; </code></pre> <p>Cheers**</p> http://stackoverflow.com/questions/1701011/linq-understanding-and-excecute-groupby-to-bring-back-unique-rows 0 LINQ : understanding and excecute Groupby to bring back unique rows? mark smith 2009-11-09T13:32:24Z 2009-11-09T14:22:52Z <p>Hi there,</p> <p>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.</p> <p>The entries are vehicles, so hence there are 50 or so Ford Mondeos</p> <p>My query is pretty simple, no joins (yet :-) ) but it brings back a list including 50 Ford Mondeos, i wanted it to group them so there is only 1 entry.</p> <p>I am only selecting Description, i am not selecting the IDs which would be different, but in LinqPad it returns the desc and i can see 50 ford mondeos that are all the same in description - letter for letter.</p> <p>What am i doing wrong?</p> <pre><code>from v in dc.Vehicles group v by v.Description into g1 from y in g1 orderby y.Description select new { Desc = y.Description }; </code></pre> <p><strong>EDIT</strong></p> <p>It now brings back just 1 record for each ford mondeo, this was my test to ensure it worked but i need to expand on this, again it should only bring back 1 record each for ford mondeo as i have checked they all have same number of doors, categor, model id etc..</p> <pre><code>from v in dc.Vehicles group v by v.Description into g1 orderby g1.Key select new { Desc = g1.Key, CategoryId = g1.CategoryId, MakeId = g1.MakeId, ModelId = g1.ModelId, Doors = g1.Doors, }; </code></pre> <p>Of the course the above doesn't work it doesn't find all the other fields i.e. CategoryId... i tried separating the group by and adding a comma for the other fields..</p> <p>I think i have a little confusion over the key, i understand that this is the key but if you are grouping on more than 1 fields then potentially you would have more than 1 key..</p> <p>Any ideas?</p> http://stackoverflow.com/questions/1686307/key-comparisons-for-linq-groupby-using-default-equalitycomparer 0 Key comparisons for Linq GroupBy using Default EqualityComparer dangph 2009-11-06T08:55:31Z 2009-11-06T11:58:24Z <p>I'm trying to do a Linq GroupBy on some objects using an explicit key type. I'm not passing an <code>IEqualityComparer</code> to the GroupBy, so according to the docs: </p> <blockquote> <p>The default equality comparer <code>Default</code> is used to compare keys.</p> </blockquote> <p>It explains the <code>EqualityComparer&lt;T&gt;.Default</code> property like this:</p> <blockquote> <p>The <code>Default</code> property checks whether type <code>T</code> implements the <code>System.IEquatable&lt;T&gt;</code> generic interface and if so returns an <code>EqualityComparer&lt;T&gt;</code> that uses that implementation.</p> </blockquote> <p>In the code below, I'm grouping an array of <code>Fred</code> objects. They have a key type called <code>FredKey</code>, which implements <code>IEquatable&lt;FredKey&gt;</code>.</p> <p>That should be enough to make the grouping work, but the grouping is not working. In the last line below I should have 2 groups, but I don't, I just have 3 groups containing the 3 input items.</p> <p>Why is the grouping not working?</p> <pre><code>class Fred { public string A; public string B; public FredKey Key { get { return new FredKey() { A = this.A }; } } } class FredKey : IEquatable&lt;FredKey&gt; { public string A; public bool Equals(FredKey other) { return A == other.A; } } class Program { static void Main(string[] args) { var f = new Fred[] { new Fred {A = "hello", B = "frog"}, new Fred {A = "jim", B = "jog"}, new Fred {A = "hello", B = "bog"}, }; var groups = f.GroupBy(x =&gt; x.Key); Debug.Assert(groups.Count() == 2); // &lt;--- fails } } </code></pre> http://stackoverflow.com/questions/1671198/group-by-in-sqlite-over-one-subset-of-a-set-based-on-the-elements-of-another-subs 0 Group by in SQLite over one subset of a set based on the elements of another subset of the set... Eric 2009-11-04T01:22:30Z 2009-11-04T02:28:31Z <p>I have a dataset something like this</p> <pre><code>A | B | C | D | E ----------------------------------------------- 1 | Carrot | &lt;null&gt; | a | 111 2 | Carrot | &lt;null&gt; | b | 222 3 | Carrot | zzz | c | 333 4 | Banana | &lt;null&gt; | a | 444 5 | Banana | &lt;null&gt; | b | 555 6 | Banana | &lt;null&gt; | c | 666 7 | Grape | &lt;null&gt; | a | 777 8 | Grape | &lt;null&gt; | b | 888 9 | Grape | zzz | c | 999 10 | Carrot | &lt;null&gt; | a | 000 11 | Carrot | &lt;null&gt; | b | AAA 12 | Carrot | zzz | c | BBB </code></pre> <p>Now what I'm trying to do is sum up the values of E where D has a value of b, but only for those elements in B where C has a value of zzz. So in the above example above I am looking at the values 222, 888, and AAA, but I'm not interested in 555. </p> <p>I can sum these up by group and sum based on value B no problem, but what I would like to do is sum based on C. </p> <p>My code looks something like this</p> <pre><code>select B, (select sum(E) as duty_payable from table table_alias_b where D = "b" and table_alias_b.B = table_alias_a.B ) from table table_alias_a where table_alias_b.B in (select B from table where (C = 'zzz')) group by B </code></pre> <p>Or something like that (there are joins across three tables going on too...)</p> <p>Is that at all comprehensible?</p> http://stackoverflow.com/questions/1660252/mysql-syntax-group-by-restaurant-with-cheaper-menu 3 MySQL syntax group by restaurant with cheaper menu Sebastien BARBIER 2009-11-02T09:34:39Z 2009-11-02T11:09:02Z <p>Hi everyone !</p> <p>Here is my SQL request on MySQL (MySQL: 5.0.51a). I want have a list of restaurant with his cheaper menu:</p> <pre><code>select r.id, rm.id, rm.price, moyenne as note, get_distance_metres('47.2412254', '6.0255656', map_lat, map_lon) AS distance from restaurant_restaurant r LEFT JOIN restaurant_menu rm ON r.id = rm.restaurant_id where r.isVisible = 1 group by r.id having distance &lt; 2000 order by distance ASC limit 0, 10 </code></pre> <p>If I don't use group by, I have a list of all my menu and restaurant but when I use it, looks like he choose randomly a menu for my restaurant.</p> <p>Thx for your help.</p> http://stackoverflow.com/questions/1658340/sql-query-to-group-by-day 0 Sql query to Group by day mrblah 2009-11-01T21:13:34Z 2009-11-01T21:49:48Z <p>I want to list all sales, and group the sum by day.</p> <p>Sales (saleID INT, amount INT, created DATETIME)</p> <p><b>Update</b> I am using SQL Server 2005</p> http://stackoverflow.com/questions/1642116/linq-and-grouping-from-a-simple-sql-db-relationship 0 LINQ and Grouping from a simple SQL DB relationship Kaare Mai 2009-10-29T07:30:24Z 2009-10-30T11:14:51Z <p>I have two tables with the following layout and relationships:</p> <pre><code>Tasks: TaskID StartTime EndTime TaskTypeID ProductionID ------------------------------------------------------------ 1 12:30 14:30 1 1 2 14:30 15:30 2 1 3 11:10 13:40 2 2 4 10:25 15:05 1 2 TaskTypes: TaskTypeID Name --------------------------------------------- 1 Hardware Development 2 Software Development </code></pre> <p>The relationship is:</p> <p>Primary key in TaskTypes.TaskTypeID and foreign key in Tasks.TaskTypeID.</p> <p>The same with the ProductionID (i've left out the table layout): Primary key in Productions.ProductionID and foreign key in Tasks.ProductionID.</p> <p>What i would like todo is receive a grouped list that displays all the tasks for each task type for a certain production. I guess this is pretty simple but i just can't get it to work with LINQ.</p> <p>The query is used to display all the TaskTypes for a certain production along with the sum of the total time used for each TaskType for that production.</p> <p>I use LINQ to SQL auto-generated classes in C#.</p> <p>I tried this:</p> <pre><code>var = from TaskType in db.TaskTypes join Task in db.Tasks on TaskType.TaskTypeID equals Tasks.TaskTypeID where Task.ProductionID == p.ProductionID group TaskType by TaskType.TaskTypeID; </code></pre> http://stackoverflow.com/questions/1648817/mysql-select-sum-with-group-by-gives-integer-results 0 MySQL select sum with group by gives integer results True Soft 2009-10-30T09:32:54Z 2009-10-30T09:47:16Z <p>I have 2 tables:</p> <pre><code>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; INSERT INTO `product_det` (`id`,`prod_name`) VALUES (1,'Pepper'), (2,'Salt'), (3,'Sugar'); CREATE TABLE `product_oper` ( `id` bigint(12) unsigned NOT NULL AUTO_INCREMENT, `prod_id` bigint(12) unsigned NOT NULL, `prod_quant` decimal(16,4) NOT NULL DEFAULT '1.0000', `prod_value` decimal(18,2) NOT NULL DEFAULT '0.00', PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; INSERT INTO `product_oper` (`id`,`prod_id`,`prod_quant`,`prod_value`) VALUES (12,2,'3.0000','26.14'), (13,2,'0.0450','26.23'), (14,2,'0.0300','26.14'), (10,1,'0.0600','13.20'), (11,1,'0.0600','13.20'); </code></pre> <p>I want to find the quantity and value of each product summing the values in the second table.</p> <p>My query is:</p> <pre><code>SELECT product_det.*, SUM(in_out.p_q) as q, SUM(in_out.p_val) AS val FROM (SELECT product_oper.prod_id as p_id, SUM(product_oper.prod_quant) as p_q, SUM(product_oper.prod_quant*product_oper.prod_value) as p_val FROM product_oper GROUP BY product_oper.prod_id ) AS in_out LEFT JOIN product_det ON in_out.p_id=product_det.id GROUP BY in_out.p_id HAVING q&lt;&gt;0.00 ORDER BY val; </code></pre> <p>The result I get is:</p> <pre><code>id, prod_name, q, val 1, 'Pepper', 0.1200, 2 2, 'Salt', 3.0750, 80 </code></pre> <p>Which is wrong, the values from column <code>val</code> are integers, and they shouldn't be. </p> <p>However, the inner select gives the next result:</p> <pre><code>p_id, p_q, p_val 1, 0.1200, 1.584000 2, 3.0750, 80.384550 </code></pre> <p>The problem is: why I get integer values for <code>val</code> when I select from the subquery? And why <code>q</code> is not integer?</p> <p>I need to use subqueries, because my original query was like this:</p> <pre><code>SELECT ... FROM (SELECT ... UNION SELECT ...) AS in_out GROUP BY in_out.p_id </code></pre> <p>I have MySQL version 5.1.39</p> http://stackoverflow.com/questions/1007418/sql-server-2005-error-when-grouping-using-subquery 0 SQL Server 2005 error when grouping using subquery. Simon D 2009-06-17T14:33:04Z 2009-10-27T09:58:15Z <p>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 round it quite easily, but can anyone explain the error? I've got a column reference to #header.header.</p> <pre><code>create table #header (header int) create table #detail (header int, detail int) insert into #header values (1) insert into #header values (2) insert into #header values (3) insert into #detail values (1, 1) insert into #detail values (2, 1) --error: Each GROUP BY expression must contain at least one column reference. select case when exists (select 1 from #detail where #detail.header = #header.header) then 1 else 0 end hasrecords from #header group by case when exists (select 1 from #detail where #detail.header = #header.header) then 1 else 0 end --results I want select hasrecords, count(*) from ( select case when exists (select 1 from #detail where #detail.header = #header.header) then 1 else 0 end hasrecords from #header ) hasrecords group by hasrecords drop table #header drop table #detail </code></pre> <p>[edit] Note (in response to comment) correlated and non-correlated subqueries:</p> <pre><code>--correlated select header, case when exists (select 1 from #detail where #detail.header = #header.header) then 1 else 0 end hasrecords from #header --non-correlated select #header.header, case when count(#detail.header) &gt; 0 then 1 else 0 end hasrecords from #header left join #detail on #header.header = #detail.header group by #header.header </code></pre> http://stackoverflow.com/questions/747738/getting-non-existant-month-week-year-when-using-mysql-group-by-clause-with-month 0 Getting non-existant month/week/year when using MySql group by clause with month/week/year date functions. Ketan 2009-04-14T14:07:23Z 2009-10-13T21:00:03Z <p>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 OR year OR week respectively for obvious reasons. I was wondering if there is a way to get them?</p> http://stackoverflow.com/questions/1486487/sql-to-show-all-entries-within-a-number-of-categories 1 SQL to show all entries within a number of categories daniel 2009-09-28T11:06:02Z 2009-09-28T11:55:34Z <p>Hi, I'm writing an sql query on three tables which finds and displays categories and all the entries within each category</p> <p>For example</p> <p>Category 1 post 1 post 2 post 3 post 4</p> <p>Category 2 post 5 post 6</p> <p>Category 3 post 7 post 8</p> <p>etc</p> <p>I have the categories displaying but can only get one item from each. Can anyone suggest a better approach?</p> <pre><code>$sql = "SELECT c.CategoryDescription, f.Description, l.FileID, l.CategoryID FROM FileCategories c, Files f, FilesLK l WHERE c.PictureCategoryID IN (58, 59, 60, 61, 62, 63) AND c.PictureCategoryID = l.CategoryID AND f.ID = l.FileID GROUP BY c.CategoryDescription"; while($row = mysql_fetch_array($result)) { $html .= '&lt;h3&gt;&lt;a href="#"&gt;'.$row['CategoryDescription'].'&lt;/a&gt;&lt;/h3&gt; &lt;div&gt;'.$row['Description'].'&lt;/div&gt;'; } </code></pre> <p>Thanks</p> http://stackoverflow.com/questions/1458864/how-to-get-away-with-non-grouping-field-in-having-clause 0 How to get away with non-grouping field in HAVING clause WardB 2009-09-22T08:49:47Z 2009-09-22T18:06:29Z <p>When executing in *ONLY_FULL_GROUP_BY* mode, I get the error "non-grouping field 'distance' is used in <em>HAVING</em> clause" when executing the following query. The query counts the amount of hotels that are within 15 km distance of a certain latitude &amp; longitude. Is there a way to rewrite this query so I don't get the error anymore in *ONLY_FULL_GROUP_BY* mode? </p> <pre><code>SELECT count(id) as total, (foo * 100) AS 'distance' FROM `hotels` WHERE `lng` between 4.56 and 5.08 and `lat` between 52.22 and 52.65 HAVING `distance` &lt; 15 </code></pre> http://stackoverflow.com/questions/1452507/linq-to-objects-does-groupby-preserve-order-of-elements 2 Linq to Objects: does GroupBy preserve order of elements? Konstantin 2009-09-21T01:23:08Z 2009-09-21T01:30:10Z <p>Does Enumerable.GroupBy from LINQ to Objects preserve order of elements in the groups?</p> http://stackoverflow.com/questions/1451320/group-by-string-optimization 0 Group by string optimization Shore 2009-09-20T15:47:53Z 2009-09-20T16:19:00Z <p>I'm gonna convert string to integer to optimize group by performance.</p> <p>What do you guys think of the idea?</p> <p>If applicable,then is there a built-in function to convert string to a unique integer in PHP?</p> http://stackoverflow.com/questions/1451080/how-does-mysql-decide-which-id-to-return-in-group-by-clause 3 How does MySQL decide which id to return in group by clause? Shore 2009-09-20T14:04:55Z 2009-09-20T15:19:59Z <p>Such as this one:</p> <p>SELECT id, count( * ) , company FROM <code>jobs</code> GROUP BY company</p> <p>Where id is the primary key of <code>jobs</code></p> http://stackoverflow.com/questions/1395798/linq-c-combining-multiple-groups 2 LINQ C# - Combining multiple groups codechobo 2009-09-08T19:13:56Z 2009-09-09T12:34:49Z <p>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. </p> <p>e.g.</p> <pre><code>var customersData = new[] { new { id = 1, company = "ABC" }, new { id = 2, company = "AAA" }, new { id = 3, company = "ABCD" }, new { id = 4, company = "XYZ" }, new { id = 5, company = "X.Y.Z." }, new { id = 6, company = "QQQ" }, }; var groups = from d in customersData group d by d.company; </code></pre> <p>Let's say I want ABC, AAA, and ABCD in the same group, and XYZ, X.Y.Z. in the same group.</p> <p>Is there anyway to achieve this through LINQ queries?</p> http://stackoverflow.com/questions/1375997/group-by-variable-integer-range-using-linq 1 Group by variable integer range using Linq Jenny 2009-09-03T21:13:39Z 2009-09-03T22:32:23Z <p>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.</p> <p>e.g. I have</p> <p>Item ID Price <br/> 1 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 10 <br/> 2 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 30 <br/> 3 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 50 <br/> 4 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 120 <br/></p> <p>I would like to group the items with price 0 - 10, 11- 100, and 100-500. So that item 1 is in group A, item 2,3, in group B, item 4 in group C.</p> <p>The closest I can come up is from items group items by (items.price / 10 )</p> <p>then join the groups together to get the different ranges.</p> <p>Any ideas?</p> <p>Thanks! Jenny</p> http://stackoverflow.com/questions/239545/how-do-i-return-my-records-grouped-by-null-and-not-null 6 How do I return my records grouped by NULL and NOT NULL? Stewart Johnson 2008-10-27T10:48:48Z 2009-08-10T09:51:18Z <p>I have a table that has a <code>processed_timestamp</code> column -- if a record has been processed then that field contains the datetime it was processed, otherwise it is null.</p> <p>I want to write a query that returns two rows:</p> <pre><code>NULL xx -- count of records with null timestamps NOT NULL yy -- count of records with non-null timestamps </code></pre> <p>Is that possible?</p> <p><strong>Update:</strong> The table is quite large, so efficiency is important. I could just run two queries to calculate each total separately, but I want to avoid hitting the table twice if I can avoid it.</p> http://stackoverflow.com/questions/1138006/multi-column-distinct-in-mysql 0 Multi column distinct in mysql barryhunter 2009-07-16T14:28:07Z 2009-07-24T10:29:37Z <pre><code>| one | two | ------------- | A | 1 | | A | 2 | | B | 1 | | B | 3 | | C | 1 | | C | 4 | </code></pre> <p>I would like to get no repeats in any column in a query, so the standard <code>SELECT DISTINCT one,two FROM table;</code> or <code>SELECT * FROM table GROUP BY one,two;</code> doesn't quite work, because it looks for distinct in all rows, which in this case would return all 6 rows.</p> <p>Ideally, I am looking for:</p> <pre><code>| one | two | ------------- | A | 1 | | B | 3 | | C | 4 | </code></pre> <p>In PHP (etc.), I would just do this with an array for each column, and if any column has been used before then skip the row. I am not sure how to implement that in MySQL, though.</p> <p><code>SELECT * FROM (SELECT * FROM table GROUP BY one) GROUP BY two</code>- almost works. but because the outer query doesn't see all the alternatives, it will miss valid options, i.e. the inner will collapse to A,B,C but could well pick <strong>all</strong> 1s for column two, which would mean the second GROUP BY would then collapse it own to 1 row!</p> <p>I know the order of duplication checking will have an effect on the exact rows returned -- not worried about that -- I just want a good cross section of rows with minimal similar rows.</p> http://stackoverflow.com/questions/755132/how-do-i-order-a-group-result-in-linq 3 How do I order a Group result, in Linq? Pure.Krome 2009-04-16T07:48:23Z 2009-06-28T16:13:52Z <p>Hi folks,<br /> I have the following linq query, which works fine. I'm not sure how i order the group'd result.</p> <pre><code>from a in Audits join u in Users on a.UserId equals u.UserId group a by a.UserId into g select new { UserId = g.Key, Score = g.Sum(x =&gt; x.Score) } </code></pre> <p>the results are currently ordered by UserId ascending. I'm after Score descending.</p> <p>thanks :)</p> http://stackoverflow.com/questions/965952/conditional-group-by-statement-using-linq 1 Conditional Group By statement using LINQ Tomasz 2009-06-08T17:10:44Z 2009-06-08T21:47:36Z <p>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 me. I have the following LINQ code</p> <pre><code>Dim SummaryLog As IQueryable(Of clPartCountSummary) SummaryLog = From Inventory In db.tblPartCounts _ Where Inventory.InventoryCountId = InventoryCountId _ And Not Inventory.ActionId.HasValue _ Group By PartNumber = Inventory.PartNumber _ , Inventory.RevLevel, SAPLocation = Inventory.SAPLocation _ Into AggregatedProdLog = Group, Qty = Sum(Inventory.Quantity) _ Select New clPartCountSummary With {.PartNumber = PartNumber, .RevLevel = RevLevel, .Qty = Qty, .SAPLocation = SAPLocation} </code></pre> <p>I want to be able to conditionally group by on RevLevel and SAPLocation. I will always group by PartNumber, but the other two are optional. So if a variable bRevLevel is true then we group by rev level and if bSAPLocation is true then we group by SAP Location as well.</p> <p>Any help will be much appreciated, I'm at the stage where multiple SummaryLog definitions are starting to look appealing.</p> <p>Thanks, Tomasz</p> http://stackoverflow.com/questions/940377/sql-sum-column-before-inserting-into-temp 0 SQL Sum Column before inserting into #temp Neomoon 2009-06-02T16:05:30Z 2009-06-02T16:49:33Z <p>In my SPROC a table named #temp1 contains the following columns:</p> <pre><code>#temp1 (StoreId, StoreDesc, ReservedQty, AvgPrice, QtyOnHand) </code></pre> <p>My question is based on the following query</p> <pre><code>INSERT INTO #temp2 (StoreId, StoreDesc, CommittedQty) (SELECT StoreId, StoreDesc, CASE WHEN ReservedQty &gt; QtyOnHand THEN sum(QtyOnHand * AvgPrice) ELSE sum(ReservedQty * AvgPrice) END AS CommittedQty FROM #temp1 GROUP BY StoreId, StoreDesc, QtyOnHand, ReservedQty) </code></pre> <p>A sample result set looks like this:</p> <pre><code>StoreId StoreDesc CommittedQty C4ED0D8B-22CF-40FE-8EF9-7FD764310C94 FramersBranch 0 C4ED0D8B-22CF-40FE-8EF9-7FD764310C94 FarmersBranch 88978 C4ED0D8B-22CF-40FE-8EF9-7FD764310C94 FarmersBranch 0 C4ED0D8B-22CF-40FE-8EF9-7FD764310C94 FarmersBranch 3152 6369D3A6-83BC-4BB0-9A25-86838CD2B7BA Woodlands 5582 6369D3A6-83BC-4BB0-9A25-86838CD2B7BA Woodlands 389 </code></pre> <p>Unfortunatly since I have to <code>GROUP BY</code> the <code>QtyOnHand</code> &amp; <code>ReservedQty</code> columns in my <code>CASE</code> statement I get multiple rows for each StoreId.</p> <p>I would like to know if there is a simple way for me to sum the results (again) based on the CommittedQty so that I may get the following result set I desire: </p> <pre><code>StoreId v StoreDesc CommittedQty C4ED0D8B-22CF-40FE-8EF9-7FD764310C94 FramersBranch 92130 6369D3A6-83BC-4BB0-9A25-86838CD2B7BA Woodlands 5971 </code></pre> <p>I realize I could use another temp table but wondered if there was an easier way to accomplish this inside the <code>SELECT</code> statement</p> http://stackoverflow.com/questions/850827/returning-partially-distinct-unique-rows 0 returning partially distinct/unique rows andrej351 2009-05-12T02:01:17Z 2009-05-12T04:21:19Z <p>Hi all, </p> <p>I need to create a query which groups by two columns and returns an additional column based on a condition.</p> <p>For example, say I've got the following columns:</p> <p>ProductCode | SerialNumber | Quantity | DatePurchased | CustomerID</p> <p>and the table contains duplicate combinations of ProductCode and SerialNumber with differing Quanitites and Purchase Dates. I'd like to return the ProductCode, SerialNumber and the Quantity for the row with greatest (most recent) value for DatePurchased. To further complicate things this must be done for all rows where CustomerID = 'xxx'.</p> <p>Any ideas???</p> <p>Any help appreciated. Cheers.</p> http://stackoverflow.com/questions/537223/mysql-control-which-row-is-returned-by-a-group-by 2 MySQL - Control which row is returned by a group by. benlumley 2009-02-11T15:06:39Z 2009-05-08T23:13:06Z <p>I have a database table like this:</p> <pre><code>id version_id field1 field2 1 1 texta text1 1 2 textb text2 2 1 textc text3 2 2 textd text4 2 3 texte text5 </code></pre> <p>If you didn't work it out, it contains a number of versions of a row, and then some text data.</p> <p>I want to query it and return the version with the highest number for each id. (so the second and last rows only in the above).</p> <p>I've tried using group by whilst ordering by version_id DESC - but it seems to order after its grouped, so this doesn't work.</p> <p>Anyone got any ideas? I can't believe it can't be done!</p> <p>UPDATE:</p> <p>Come up with this, which works, but uses a subquery:</p> <pre><code>SELECT * FROM (SELECT * FROM table ORDER BY version_id DESC) t1 GROUP BY t1.id </code></pre> http://stackoverflow.com/questions/710519/inserting-increment-for-each-unique-value-in-sql 2 Inserting increment for each unique value in sql. Chris 2009-04-02T16:32:37Z 2009-04-02T16:55:00Z <p>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. </p> <p>I have a table that currently looks like this:</p> <pre><code> widgets --------- a a a b b c d d d </code></pre> <p>I would like to have another table that has each unique value incrementally numbered... Like so:</p> <pre><code>widgets | widget_id --------- ---------- a | 1 a | 1 a | 1 b | 2 b | 2 c | 3 d | 4 d | 4 d | 4 </code></pre> <p>I'm not sure how this would be done with an insert statement?</p> http://stackoverflow.com/questions/441549/how-to-lambda-the-group-by-data-on-a-linq-to-sql-results 0 How to lambda the group by data on a LINQ to Sql results? EZ 2009-01-14T01:15:28Z 2009-04-01T06:35:28Z <ol> <li><p>I get the data from the database like this.</p> <pre><code> Dim query = From t1 In TBL1 _ Join t2 In TBL2 On t1.ID Equals t2.ID _ Join t3 In TBL3 On t1.ID Equals t3.ID _ Group Join t4 In t1 _ On t1.ID Equals t4.ID _ Into t4_Grp = Group _ Select t1, t2, t3, t4_Grp </code></pre></li> <li><p>As the user performs a search I am able to filter the query results like this.</p> <pre><code>query = query.Where(Function(o) o.t1.ID = lngID) </code></pre></li> <li><p>All works fine above. Until I want to lambda the t4_Grp. I do not know how to do a lambda expressions on the t4_Grp?</p></li> </ol> http://stackoverflow.com/questions/681408/mysql-multiple-grouping 0 MySQL: multiple grouping Matt 2009-03-25T12:42:29Z 2009-03-27T00:47:49Z <p>So I have an example table called <strong>items</strong> with the following columns:</p> <ul> <li><strong>item_id</strong> (int)</li> <li><strong>person_id</strong> (int)</li> <li><strong>item_name</strong> (varchar)</li> <li><strong>item_type</strong> (varchar) - examples: "news", "event", "document"</li> <li><strong>item_date</strong> (datetime)</li> </ul> <p>...and a table <strong>person</strong> with the following columns: "person_id", "person_name".</p> <p>I was hoping to <strong>display a list of the top 2 submitters (+ the COUNT() of items submitted) in a given time period for each item_type</strong>. Here's basically what I was hoping the MySQL output would look like:</p> <pre><code>person_name | item_type | item_count Steve Jobs | document | 11 Bill Gates | document | 6 John Doe | event | 4 John Smith | event | 2 Bill Jones | news | 24 Bill Nye | news | 21 </code></pre> <p>How is this possible without making a separate query for each item_type? Thanks in advance!</p> http://stackoverflow.com/questions/618585/linq-get-access-to-child-lists-during-runtime 0 LINQ: get access to child lists during runtime numpsy 2009-03-06T11:50:41Z 2009-03-06T13:04:11Z <p>i make a group by and get child lists... during query i create a new obj with </p> <pre><code>var result3 = from tick in listTicks group tick by bla bla into g select new { Count = g.Count(), Key = g.Key, Items = g, Timestamp = g.First().timestamp, LastTimestamp = g[-1].First().timestamp result3 isn't still declared??? }; </code></pre> <p>i want have access during runtime in the select new on values of the last created obj maybe check if the last first.Timestamp has a specific value</p> <p>is it possible to have access to the last g during creating the select new { } i want to check an actual value withe one from the last g </p> <p>i thought something like result3[result.count - 1].timestamp??? in the select new part...</p> http://stackoverflow.com/questions/611441/how-can-i-group-by-specific-timestamp-intervals-in-c-using-linq 0 How can I group by specific timestamp intervals in C# using LINQ? numpsy 2009-03-04T16:46:17Z 2009-03-05T07:01:11Z <p>I have a list with tick objects including a pair of a double value and a timestamp.</p> <p>I want to separate the list into child-lists depending on a time interval (for example 15 minutes). One list only has the tick objects from: 8:00:00 - 8:14-59 usw usw</p> <h3>C#-code:</h3> <pre><code>var result = from tick in listTicks group tick by tick.timestamp.Hour; </code></pre> <p>The <code>datetime</code> functions like day, hour, minute work fine but a specific interval wasn't possible for me.</p> <p>It is LINQ to objects. I have already got the list from the DB and I want to transform the list.</p> <p>If I have data from 8-22 each day separate to 3 h he separate this way:</p> <blockquote> <p>0-2;3-5;6-8;9-11 </p> </blockquote> <p>With code:</p> <pre><code>var result = from tick in listTicks group tick by (tick.timestamp.Day * 10 + tick.timestamp.Hour / 3); </code></pre> <p>I want:</p> <blockquote> <p>8-10;11-13;14-16;17-19;20-22 </p> </blockquote> <p>I want it to separate it this way.</p>