You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

49 lines
425 B

-- Query 20
SELECT
comprend.numfacture,
SUM(comprend.qte) AS 'nb conso'
FROM
comprend
GROUP BY comprend.numfacture;
/* == RESULT ==
"numfacture","nb conso"
1000,4
1001,5
1002,2
1003,6
1004,5
1005,7
1006,2
1007,4
1008,5
1009,4
1010,4
1011,1
1012,3
1013,5
1014,2
1015,4
1016,1
1017,5
1100,2
1101,4
1102,3
1103,5
1104,7
1105,5
1106,3
1107,3
1108,2
1200,6
1201,4
1202,3
1203,5
1204,7
1205,5
1206,3
1207,5
1208,2
*/