|
@@ -47,9 +47,13 @@
|
|
round(convert(current_median,decimal(10,4)),2) AS median,
|
|
round(convert(current_median,decimal(10,4)),2) AS median,
|
|
round(convert(current_lower_quartile,decimal(10,4)),2) AS lowerQuartile,
|
|
round(convert(current_lower_quartile,decimal(10,4)),2) AS lowerQuartile,
|
|
current_mode,
|
|
current_mode,
|
|
- round(convert(current_standard_deviation,decimal(10,4)),2) AS standardDeviation
|
|
|
|
|
|
+ round(convert(current_standard_deviation,decimal(10,4)),2) AS standardDeviation,
|
|
|
|
+ tbe.exam_time as examTime,
|
|
|
|
+ tbe.exam_name as examName
|
|
FROM
|
|
FROM
|
|
t_a_exam_course taec
|
|
t_a_exam_course taec
|
|
|
|
+ join t_b_exam tbe
|
|
|
|
+ on tbe.id = taec.exam_id
|
|
<where>
|
|
<where>
|
|
<if test="courseCode != null and courseCode != ''">
|
|
<if test="courseCode != null and courseCode != ''">
|
|
and taec.course_code = #{courseCode}
|
|
and taec.course_code = #{courseCode}
|