create table student(
       id number primary key,
       name varchar2(50) not null,
       age number not null,
       email varchar2(50) not null,
       birthday date not null
)
insert into student values(1,'张三',11,'12321@11.com',date'2013-6-5');
insert into student values(2,'李四',19,'1232s1@1a1.com','11-12月-2012');
insert into student values(3,'王五',25,'1232s1@1s1.com',to_date('2012-11-22','yyyy-mm-dd'));