摘要:
有这么一张表: create table hy_testtime( id number(6,0) not null primary key, name nvarchar2(20) not null, utime timestamp(6) ) 如果这样给它充值: insert into hy_test 阅读全文
摘要:
有这样一张表: create table tb_lostid( id number(6,0) primary key not null, name nvarchar2(20) not null ) 可以这样给它充值: insert into tb_lostid select rownum, dbms 阅读全文
摘要:
有这么一张表: create table tb( id number(4,0) not null primary key, padid nvarchar2(20) not null, inputdate date not null, dosid integer not null ) 可以这样充值: 阅读全文