***ルール: --- いかなる結合も使用せず、相関サブクエリも使用しないでください。--- コンマ結合を使用しないでください。--- 結合を使用すると、そのタスクのポイントは得られません。From 句は 1 つのテーブルのみを参照します。--- 変数を使用しないでください。
***ここに私の問題があります: 誰かが注文した本の ID とタイトルを表示し、その本は SQL 本とデータベース本の両方です。Topic_id を使用して、DB と SQL をフィルタリングします。book_id で並べ替えます。
***私の答え:
select book_id, title
From a_bkinfo.books
Where book_id IN
(Select book_id
From a_bkinfo.book_topics
Where topic_id = 'DB')
And book_id in
(Select book_id
From a_bkinfo.book_topics
Where topic_id = 'SQL')
order by book_id;
この問題で -2 を受け取りました。先生の回答: -2 *この本が注文されたことを確認していません。
***関連する表は次のとおりです。* テーブル:
---- create order_details ------
create table a_bkorders.order_details (
order_id integer not null
, order_line integer not null
, book_id integer not null
, quantity integer not null
, order_price numeric(6,2) not null
, constraint bk_orderline_pk primary key (order_id, order_line)
, constraint bk_orderline_order_fk foreign key (order_id)
references a_bkorders.order_headers(order_id) on delete cascade
, constraint bk_orderline_book_fk foreign key (book_id )
references a_bkinfo.books(book_id)
, constraint bk_quantity_ck check (quantity > 0)
, constraint bk_ordprice_ck check (order_price >= 0)
) エンジン = INNODB;
---- create book_topics ----
create table a_bkinfo.book_topics (
book_id integer not null
, topic_id varchar(5) not null
, constraint bk_book_topics_pk primary key (book_id, topic_id)
, constraint bk_books_topics_fk foreign key(topic_id)
references a_bkinfo.topics(topic_id)
, constraint bk_books_id_fk foreign key(book_id)
references a_bkinfo.books(book_id)
) エンジン = INNODB;
------ create books ------
create table a_bkinfo.books (
book_id integer not null
, title varchar(75) not null
, publ_id integer null
, year_publd integer not null
, isbn varchar(17) null
, page_count integer null
, list_price numeric(6,2) null
, constraint bk_books_pk primary key (book_id)
, constraint bk_books_publ_fk foreign key(publ_id)
references a_bkinfo.publishers (publ_id)
, constraint book_id_range check (book_id > 1000)
, constraint bk_page_count_ck check (page_count >= 0)
, constraint bk_price_ck check (list_price >= 0)
, constraint bk_books_year_ck check (year_publd >= 1850)
)engine = INNODB;