How to delete the data in the specified date range in Oracle?

The method is as follows

delete from 表名 where 时间字段>to_date('2022-01-01 17:58:42',
'yyyy-mm-dd hh24:mi:ss')

Guess you like

Origin blog.csdn.net/cst522445906/article/details/123333457