私が持っている3 SQLテーブル:私は学生の名前とcourseNameを見つける必要があるサブクエリを使用して3つのテーブルを結合する方法は?
tb1: name id and phone of student
tb2: courseName,courseNum
tb3: id,courseNum,grade
その彼らのグレード> 80
は、私が試した:
select * from tb1 where taz in(
select taz from tb3 where grade>80
)
と
select courseNum from tb2 where courseName in(
select * from tb3 where grade>80
)
を
動作しますが、2つのサブクエリにどのように参加できますか?以下のように結合を使用して
ヒント:** 'JOIN' ** – Wanderer
サンプルテーブルのデータと予想される結果を追加します。書式設定されたテキストで、画像ではありません。 – jarlh