请有人可以帮我写一个 SQL 查询。我不知道,但我只是需要它来快速修复。
我正在尝试这样的事情:
select college.colg_id,
college.student_id,
student.student_name from college,
student
where college.student_id=student.student_id;
这给了我所有我不确定的数据。
colg_id student_id
1 1
1 2
1 3
1 4
2 5
2 6
student_id student_name
1 a1
2 b1
3 c1
4 d1
5 e1
6 f1
我只需要以下形式的数据
colg_id | student_id | student_name.