<choose>
	<when test="scoreRange!=null and scoreRange eq 1">
		AND sc.score <![CDATA[ < ]]> 60
	</when>
	<when test="scoreRange!=null and scoreRange eq 2">
		AND (sc.score <![CDATA[ >= ]]> 60 AND sc.score <![CDATA[ <= ]]> 70 )
	</when>
	<when test="scoreRange!=null and scoreRange eq 3">
		AND (sc.score <![CDATA[ >= ]]> 70 AND sc.score <![CDATA[ <= ]]> 80 )
	</when>
	<when test="scoreRange!=null and scoreRange eq 4">
		AND (sc.score <![CDATA[ >= ]]> 80 AND sc.score <![CDATA[ <= ]]> 90 )
	</when>
	<when test="scoreRange!=null and scoreRange eq 5">
		AND sc.score <![CDATA[ > ]]> 90
	</when>
	<otherwise>
	</otherwise>
</choose>

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2021-11-08
  • 2021-10-06
  • 2021-10-07
  • 2022-12-23
  • 2021-10-14
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2021-09-25
  • 2022-12-23
  • 2021-09-19
  • 2022-12-23
相关资源
相似解决方案