スキーマ member(memb_no, name, age)、book(isbn、title、authors、publisher)、およびboreded(memb_no, isbn, date) を使用して、次のクエリを実行します。唯一の問題は、一意の構成を使用することになっていないことです。一意の構成を使用せずにこれを書き直すにはどうすればよいですか?
Select T.course_id
From course as T
Where unique (select R.course_id
From section as R
Where T.course_id = R.course_id and R.year = 2009);