【oracle】如何取得数据库系统的毫秒时间放入varchar2/nvarhcar2字段

取DB的毫秒时间可以这样做:

select to_char(systimestamp,'hh24:mi:ss.ff') from dual;

 

如下便可放入varchar2/nvarhcar2字段:

表:

create table tb13(
    id number(12),
    fd_from nvarchar2(20),
    fd_to nvarchar2(20),
    primary key(id)
);

充值代码:

insert into tb13(id,fd_from)
select rownum,
       to_char(systimestamp,'hh24:mi:ss.ff')
from dual
connect by level<10001;

 

END

posted @ 2022-04-13 08:47  逆火狂飙  阅读(82)  评论(0编辑  收藏  举报
生当作人杰 死亦为鬼雄 至今思项羽 不肯过江东