create table book_201919063 ( num int not null auto_increment, bookname varchar(128) not null , writer varchar(64) not null, publisher varchar(32) not null, yearpublication int(32) not null, isbn bigint(64) not null, primary key(num) ) character set utf8mb4;