Home > database > The Oracle stored procedure of SQL statement execution time how accurate to ms
The Oracle stored procedure of SQL statement execution time how accurate to ms
Time:10-20
, strives for the bosses to help busy, ,
CodePudding user response:
To get precise millisecond directly use "TimeStamp" type variables: Declare Cur_time timestamp; The begin Cur_time:=current_timestamp; Dbms_output. Put_line (to_char (cur_time)); end;