如果我有一个 student_table 如下:
original_student other_student
10123 20234
10234 20456
我还有其他包含学生班级的表格
Student_code Class
10123 class_001
20234 class_002
10234 class_003
20456 class_004
我的问题是student_table,我怎样才能知道original_student和other_student这一行的班级总数大于或等于2,我需要结合original_student和other_student来计算。
谢谢