About 10,900,000 results
Open links in new tab
  1. sql - How to combine GROUP BY and ROW_NUMBER? - Stack Overflow

    What i need is commented above, a way to get the ROW_NUMBER but also to Group By in the first place. So i need the sum of all T1-prices grouped by T2.ID in the relation-table and in the outer query …

  2. sql - How does GROUP BY work? - Stack Overflow

    May 30, 2017 · The GROUP BY clause instructs the DBMS to group the data and then perform the aggregate (function) on each group rather than on the entire result set. Aside from the aggregate …

  3. sql - Using group by on multiple columns - Stack Overflow

    Mar 10, 2010 · When using GROUP BY x, y statement, it fetches rows for each unique pair of values of column x and y. By adding more columns in the GROUP BY clause, more detail and more specific …

  4. SQL - using alias in Group By - Stack Overflow

    SQL Server doesn't allow you to reference the alias in the GROUP BY clause because of the logical order of processing. The GROUP BY clause is processed before the SELECT clause, so the alias is …

  5. sql - How can I group time by hour or by 10 minutes? - Stack Overflow

    How do you group by whole date and by hours in the same time? I'm just using Min Date .

  6. How to group by month from Date field using sql

    Jan 28, 2013 · How can I group only by month from a date field (and not group by day)? Here is what my date field looks like: 2012-05-01 Here is my current SQL: select Closing_Date, Category, …

  7. SQL COUNT* GROUP BY bigger than, - Stack Overflow

    I want to select the distinct keys with the occurence number, this query seems functionate: SELECT ItemMetaData.KEY, ItemMetaData.VALUE, count(*) FROM ItemMetaData GROUP BY …

  8. Count number of records returned by group by - Stack Overflow

    Jun 16, 2016 · The group by doesn't change the number of rows though. 1 + 1 + 2 (in your example) will be the number of rows in the table. Are you looking for 3? The number of distinct groups?

  9. How to return a incremental group number per group in SQL

    Jan 16, 2013 · I would like create a data query in SQL to incrementally number groups of rows, grouped on a common datetime and keep the "group numbers" incrementing on the next datetime and so on. …

  10. mysql - SQL Group By with an Order By - Stack Overflow

    I don't know about MySQL, but in MS SQL, you can use the column index in the order by clause. I've done this before when doing counts with group by s as it tends to be easier to work with.