Oracle
 sql >> Database >  >> RDS >> Oracle

Come aggiungere 10 secondi in current_timestamp SQL (Oracle)

In Oracle, se vuoi un timestamp come risultato, piuttosto che una date (una date include sempre il tempo al secondo, quindi potresti voler semplicemente una date ), vorresti aggiungere un interval al timestamp . Ci sono vari modi per costruire un intervallo:puoi usare un intervallo letterale

select current_timestamp + interval '10' second
  from dual

oppure potresti usare numtodsinterval funzione

select current_timestamp + numToDSInterval( 10, 'second' )
  from dual