show tables;
create table studentinformation(Name varchar(15),int(4));
insert into studentinformation values('Saurabh',1);
insert into studentinformation values('Romoe',2);
show tables;
drop table studentinformation;
show tables;