sql server - Grouping Totals With SQL Query -


here's situation:

i have table has 2 data columns:

number | value      0 |    11      0 |    10      0 |    12      1 |    10      1 |    10      1 |    11      2 |    11        .        .        . 

and on...

i create query presents totals different numbers separately, end being so:

number | total      0 |    33      1 |    31      2 |    11        .        .        . 

i've tried applying simple sum(value) query, can't seem right.

any appreciated.

select number , sum(value) "total" tablename group number  

Comments

Popular posts from this blog

java - BeanIO write annotated class to fixedlength -

Using Java 8 lambdas/transformations to combine and flatten two Maps -

How to connect android app to App engine -