Hello,
I have an aggregate function with an “where” clause and I want to store the result in an extra measurement:
select mean(field1) into measurement2 from measurement1 where tag1=‘xxx’;
Is there a way to include the tag “tag1” (=xxx) into the new measurement, so that I can make differentiations between the mean values on the basis of the tag?
Thanks a lot!