■isbn<->書籍名対応
create table book_data (
isbn numeric(13,0) not null,
title varchar(200),
count int,
author varchar(100),
publisher varchar(100),
primary key(isbn)
) TYPE=MyISAM DEFAULT CHARACTER SET = utf8;
■ユーザIDとメールアドレスを管理
create table user_address (
mail char(100) not null,
id int,
primary key(mail)
) TYPE=MyISAM DEFAULT CHARACTER SET = utf8;
■ユーザID<->ISBN 保持している書籍管理
create table user_books (
id int not null,
isbn numeric(13,0) not null,
primary key(id,isbn)
) TYPE=MyISAM DEFAULT CHARACTER SET = utf8;