create table user
(
id int auto_increment,
email varchar(30) not null,
sysdate date default sysdat,  ------>这种是ORACLE数据库的设置,但是MYSQL如何设置呢?
type varchar(30),
primary key (id)
);