我正在使用Oracle的SQL數據庫類。這裏有一個任務:Oracle的嵌套SQL語句
「找到圖書標題,作者姓名和單位手頭上每本書分支4號」
我試過嵌套聲明,但沒有有不同的方式與這些表一起工作。
- BOOK
- 作者
- 庫存
- 分公司
這是非常有幫助! (確實想學習這個,而不是完成我的作業)到目前爲止,我得到了。另外,如果我想剛纔的答案,我會這麼說,...
select book.book_code, author.author_last, inventory.on_hand
from book inner join wrote on book.book_code = wrote.book_code,
author inner join wrote on author.author_num = wrote.author_num,
inventory inner join branch on inventory.branch_num = branch.branch_num
where branch.branch_num = 4;
但現在我有一堆重複的產品
請張貼您的架構。 – RedFilter
-1因爲你沒有顯示任何你試圖自己解決這個問題的跡象。 –