sysdate到秒,那么按照写法就应该是
delete from t2 where to_char(字段名,'yyyy-mm-dd hh24:mi:ss')='2018-11-11 10:10:10'
后面的时间是我乱写的,用to_date转换然后删除也可以(但是这个就要考虑具体的日期格式了,名不是所有的日期格式都是这样的,我只是拿这样的日期格式举例),比如:
delete from t2 where 字段名=to_date('2018-11-11 10:10:10','yyyy-mm-dd hh24:mi:ss')
温馨提示:答案为网友推荐,仅供参考