I followed TDengine’s website about continuous query. And I used the follow command to create a table to store the continuous query result.
create table if not exists tmp as select count(*) from test interval(1m) sliding (30s);
After execute upper sql clause, i query data from “tmp”, which is an empty table. But after a while I queried from “tmp” once again,I got data. I want to ask how long should I wait to confirm that the “tmp” will have data be stored?