I have an influxdb with 2 fields i want to add and then find the max. I want so use an subquery for the addition of the two fields, but it doesn't work. Tried this:
Select "Field1" + "Field2" as Sum from "testTable" Order by time Desc Limit 10;
But the Sum is empty. Further i only print the fieldson the same way:
Select "Field1","Field2" from "testTable" Order by time Desc Limit 10;
Thats the result:
Result
Where I am doing the mistakes?
