create database student;use student;create table usertable (userid varchar(20) primary key,password varchar(20),name varchar(30),regdate datetime);