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

gcc - MinGW's ld cannot perform PE operations on non PE output file -

timeout - Handshake_timeout on RabbitMQ using python and pika from remote vm -

c# - Search and Add Comment with OpenXML for Word -