How to delete items using a timestamp?

Hi!

Can I delete items using a timestamp?

Also is it possible to delete a specific item? eg id=1

There is no row level delete.

You can work round this using an extra column with a deleted flag, and set it with dedup inserts or UPDATE. Then, filter out these ‘deleted’ rows

Otherwise, you must drop partitions.