Skip to main content
1-Visitor
July 1, 2022
Solved

Subquery and aggregate function with datatable

  • July 1, 2022
  • 1 reply
  • 1124 views

Hi,

 

I have a DataTable in Thingworx storing data from csv spreadsheet.

 

I need to perform advanced queries with aggregate functions grouped by multiple columns.

Conceptually, my case is similar to this:

https://stackoverflow.com/questions/24657624/aggregate-function-in-group-by-multiple-columns

 

In particular, the datashape of the DataTable is:

 

let newEntry = {
   Employee: undefined, // STRING [Primary Key]
   LaborTime: undefined, // NUMBER
   Project: undefined, // STRING [Primary Key]
   Month: undefined // STRING [Primary Key]
};

 

I need to compute the sum of LaborTime of all Employees for each Month, grouped by Project.

What is the code to perform such query?

The result should then be plotted in BarChart/LineChart widget.

 

Best,

Pietro

Best answer by PaiChung

After you query the data from the datatable, there is an infotable function called 'Aggregate' which you can then use.

1 reply

PaiChung22-Sapphire IAnswer
22-Sapphire I
July 5, 2022

After you query the data from the datatable, there is an infotable function called 'Aggregate' which you can then use.