1、表结构

create table t_student(
    id number(10) primary key,
    name varchar2(50),
    birthday date
);

create sequence seq_t_student start with 1 increment by 1;

insert into t_student values(seq_t_student.nextval,'张三',sysdate);
insert into t_student values(seq_t_student.nextval,'李四',to_date('1990-01-01 13:13:13','yyyy-mm-dd hh24:mi:ss')); 
commit;
View Code

相关文章:

  • 2021-12-11
  • 2022-12-23
  • 2021-04-12
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-04-02
猜你喜欢
  • 2021-06-04
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-09-08
  • 2022-12-23
相关资源
相似解决方案