-
Notifications
You must be signed in to change notification settings - Fork 659
Cube
Mathias Rangel Wulff edited this page Jun 12, 2015
·
4 revisions
AlaSQL supports CUBE() grouping options:
var testData = [
{ Phase: "Phase 1", Step: "Step 1", Task: "Task 1", Val: 5 },
{ Phase: "Phase 1", Step: "Step 2", Task: "Task 2", Val: 20 },
{ Phase: "Phase 2", Step: "Step 1", Task: "Task 1", Val: 25 },
{ Phase: "Phase 2", Step: "Step 2", Task: "Task 2", Val: 40 }
];
res = alasql('SELECT Phase, Step, SUM(Val) AS Val FROM ? \
GROUP BY CUBE(Phase,Step)', [testData]);
Try this example in jsFiddle
See also: ROLLUP, [GROUPING SETS](Grouping Sets), [GROUP BY](Group By)
© 2014-2024, Andrey Gershun & Mathias Rangel Wulff
Please help improve the documentation by opening a PR on the wiki repo