|
|
|
@ -48,7 +48,8 @@ getStudentByNo
|
|
|
|
|
school_class.class_name AS className,
|
|
|
|
|
universities_colleges.universities_colleges_name AS schoolName,
|
|
|
|
|
university_faculty.university_faculty_id AS collegeId,
|
|
|
|
|
university_faculty.university_faculty_name AS collegeName
|
|
|
|
|
university_faculty.university_faculty_name AS collegeName,
|
|
|
|
|
student.student_id AS studentId
|
|
|
|
|
FROM
|
|
|
|
|
core_user
|
|
|
|
|
JOIN student ON core_user.CODE = student.student_sn
|
|
|
|
@ -72,7 +73,8 @@ getTeacherByNo
|
|
|
|
|
university_system.university_system_name AS majorName,
|
|
|
|
|
universities_colleges.universities_colleges_name AS schoolName,
|
|
|
|
|
university_faculty.university_faculty_id AS collegeId,
|
|
|
|
|
university_faculty.university_faculty_name AS collegeName
|
|
|
|
|
university_faculty.university_faculty_name AS collegeName,
|
|
|
|
|
teacher.teacher_id AS teacherId
|
|
|
|
|
FROM
|
|
|
|
|
core_user
|
|
|
|
|
JOIN teacher ON core_user.CODE = teacher.teacher_job_number
|
|
|
|
|