node.js - InfluxDB composite query -


why function don't bring results? in influxdb.

select * items.movement   time > now() - 7d     , oldcontainerid='aaaaaa'     , newcontainerid='aaaaaaa' 

thanks.

i solved this:

select * series   time > now() - 7d     , newcontainerid = 'aaaa'   limit 100; select * series   time > now() - 7d     , oldcontainerid = 'aaaa'   limit 100 

Comments

Popular posts from this blog

c++ - Difference between pre and post decrement in recursive function argument -

php - Nothing but 'run(); ' when browsing to my local project, how do I fix this? -

php - How can I echo out this array? -