日期:2014-05-16 浏览次数:20513 次
有时候,需要通过类型定制查询结果的排序顺序, 可以在 DAO中预先设定好排序字符串, 也可以在 IBATIS 文件中,通过判断标志来生成。
?
?
<isEqual compareValue="chkName" property="arrange"> order by t.PILOT_NAME,t.AERO_UNIT_CODE </isEqual> <isEqual compareValue="chkCode" property="arrange"> order by t.CLERK_CODE,t.AERO_UNIT_CODE </isEqual> <isEqual compareValue="chkOrg" property="arrange"> order by t.AERO_UNIT_CODE,t.PILOT_NAME </isEqual>
?
这里通过变量值来订制排序串。
?