Hello All
Question; whats the correct way to get a full count of all rows in a timeseries using SQL? I can do this; select count(status) from root.logs.device But this only gives me the count of status that are not null. The queries below both return zero results. select count(time) from root.logs.device and select count(timestamp) from root.logs.device ThanksĀ Trevor Hart