Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
「Instructor」列の 1 つのインスタンスを持ち、メインの「Instructor」列の横に「formsreturned」と「availability_avg」を表示する 1 つのメイン テーブルを作成するにはどうすればよいですか?
標準を作成するだけINNER JOINです:
INNER JOIN
SELECT T1.Instructor, T1.Availability_Avg, T2.FormsReturned FROM Table1 T1 INNER JOIN Table2 T2 ON T1.Instructor = T2.Instructor