Hi, my label called THELIST is a table. I often access it like this:
Table THELIST = MYOBJECT.labels["THELIST"].as(Table);
I want to use this command on it:
Table.query("SELECT SUM(COLUMN) FROM [THELIST] WHERE [ID] == 1421 AND [DAY] == 1").cloneTo(Table("TEMP"));
Is this possible?