1

我在数据库中有两个表。

第一个表books有字段number ,*title*, subject area , author
其他表borrowed_items有字段 *item_number* , *user_id* ,issue datereturn date

如何进行查询以查找学科领域为“物理”且被借阅的书名,即存在于借阅项目表中?

borrowed_items 表中的“item_number”字段对应于“books”表中的“number”字段。

4

2 回答 2

1
SELECT  a.*, b.*       -- you can select your desired columns here
FROM    books a
        INNER JOIN borrowed_items b
            ON a.`number` = b.item_number
WHERE   a.`subject area` = 'Physics'

要进一步了解有关联接的更多信息,请访问以下链接:

于 2013-01-25T13:35:04.807 回答
0
SELECT books.title 
FROM   books JOIN borrowed_items ON borrowed_items.item_number = books.number
WHERE  books.`subject area` = 'Physics'
于 2013-01-25T13:34:49.417 回答