I'm trying to recover some records but I don't remember the exact time or date they were deleted:
I remember that these records that were deleted all had 'nan' values in link and name columns, and the asof_date values were between July & October.
I believe they were deleted 1 day ago so I tried this (since 1440 min in a day) but nothing populates:
select * from my_table at(offset => -60*1440)
where link = 'nan'
and name = 'nan'
and to_date(asof_date) >= '2021-07-01'
and to_date(asof_date) <= '2021-10-13'