I'm creating an excel sheet with alasql. For example my sheet looks like
date | value1 | value2
---------- | ------ | ------
2016-01-01 | 2 | 3
2016-01-02 | 1 | 4
Is it possible to add a summary row at the bottom of the values? E.g.
date | value1 | value2
---------- | ------ | ------
2016-01-01 | 2 | 3
2016-01-02 | 1 | 4
Sum | 3 | 7