Delete Measurements between two times

Hi,

I want to delete all A1 measurements between 1604067491256602223 and 1604067766136757953.

Are there a way of doing this?

InfluxDB shell version: 1.7.7

Hello @Johan_Scheepers,
Please take a look at this delete documentation. The final example shows you how to delete with time Manage your database using InfluxQL | InfluxDB OSS 1.8 Documentation

>  DELETE FROM "test" WHERE time < '2016-01-01' and time > '2015-01-01'