Given the following table:
time | col1 col2 col3 ...
--------------------------------
10:53:02 | 89 89 76 ...
...
How does one select a subset of columns from this table (including the index) referenced by a list of column names i.e. cols:('col1';'col3');
Whereby the expected result would be:
time | col1 col3
----------------------
10:53:02 | 89 89
...
Thanks