select * from archive where (dateTime >= 1574765820) and (dateTime <= 1574766845);
will tell you what is in the table between those values and if it is the correct range then set rainRate and rain to 0 with
update archive set rainRate = 0, rain = 0 where (dateTime >= 1574765820) and (dateTime <= 1574766845);