create table book_201919004( number int not null auto_increment, bookname varchar(16) not null , author varchar(16) not null, publisher varchar(20) not null, Yearofpublication int(30) not null, isbnnum int(20) not null, primary key(number) ) character set utf8mb4;