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