我買了deitel java如何編程書。我正在關注他們的一項練習。 在我的程序中,我連接到一個mysql書籍數據庫。我能夠添加新的作者,編輯作者,新的標題。然而,d)部分讓我感到困惑。我想改變表格並添加一個外鍵?在表中添加一個新的條目鏈接
下面是書中的練習,所以你可以看到部分d)
a) Add a new Author
b) Edit the existing information for an author
c) Add a new title for an author (Remember that the book must have entry in the AuthorISBN table.)
d) Add a new entry in the authorISBN table to link authors with titles.
這裏是數據庫的屏幕截圖在「蛤蟆」
如果他們平均開放寫一個sql語句,我會添加一個新的AuthorID引用標題?
ALTER TABLE AuthorISBN ADD FOREIGN KEY (AuthorID) REFERENCES title (AuthorID);