create table author ( id bigint auto_increment primary key, name varchar(200) not null ); create table book ( id bigint auto_increment primary key, title varchar(200) not null, author_id bigint );