oracle modification time field format

In an Oracle database, modified time field of the table, use TO_DATE () function

For example, the following code:

update USBP_TAKE_OFF_POINT
set CREATE_TIME = to_date('2019-6-27 15:49:36','yyyy-mm-dd hh24:mi:ss')
where TAKE_OFF_POINT = 4;

Guess you like

Origin www.cnblogs.com/4AMLJW/p/hjkkcxvtg.html