私は3つのテーブルを持っています:
create table book (book_id int not null primary key,
book_name char (100) unique)
create table author (author_id int not null primary key,
authorname char (100) unique)
create table bookauthor (book_id int,
author_id int,
CONSTRAINT pk_book_id PRIMARY KEY (book_id,author_id))
設定したい
book.book_id
fk としての列bookauthor.book_id
author.author_id
fk としての列bookauthor.author_id
bookauthor
pk inが onであることを覚えておいてくださいbook_id,author_id
。