这是原来的
select * from ( select t.batch_no, t.oper_name, t.oper_id, t.oper_time,'病历送出' operate_type from rec_mr_batch_no t <where> and t.batch_type = '送出批次' <if test="request.patientId != null "> AND t.patient_id = #{request.patientId, jdbcType=VARCHAR} </if> <if test="request.visitNo != null "> AND t.visit_no = #{request.visitNo, jdbcType=VARCHAR} </if> </where> union select null as batch_no, p.operator_name oper_name, p.operator_id oper_id, p.operate_time oper_time, p.operate_type from rec_paper_trace_log p <where> <if test="request.patientId != null "> AND p.patient_id = #{request.patientId, jdbcType=VARCHAR} </if> <if test="request.visitNo != null "> AND p.visit_no = #{request.visitNo, jdbcType=VARCHAR} </if> and p.operate_type ='取消送出' </where> union select null as batch_no, p.operator_name oper_name, p.operator_id oper_id, p.operate_time oper_time, p.operate_type from rec_paper_trace_log p <where> <if test="request.patientId != null "> AND p.patient_id = #{request.patientId, jdbcType=VARCHAR} </if> <if test="request.visitNo != null "> AND p.visit_no = #{request.visitNo, jdbcType=VARCHAR} </if> and p.operate_type ='退回送出' </where> )temp order by temp.oper_time
修改后查询正常显示,数据不会错乱
select * from ( select t.batch_no, t.oper_name, t.oper_id, t.oper_time,'病历送出' operate_type from rec_mr_batch_no t <where> and t.batch_type = '送出批次' <if test="request.patientId != null "> AND t.patient_id = #{request.patientId, jdbcType=VARCHAR} </if> <if test="request.visitNo != null "> AND t.visit_no = #{request.visitNo, jdbcType=VARCHAR} </if> </where> union select null as batch_no, p.operator_name oper_name, p.operator_id oper_id, p.operate_time oper_time1, p.operate_type from rec_paper_trace_log p <where> <if test="request.patientId != null "> AND p.patient_id = #{request.patientId, jdbcType=VARCHAR} </if> <if test="request.visitNo != null "> AND p.visit_no = #{request.visitNo, jdbcType=VARCHAR} </if> and p.operate_type ='取消送出' </where> union select null as batch_no, p.operator_name oper_name, p.operator_id oper_id, p.operate_time oper_time2, p.operate_type from rec_paper_trace_log p <where> <if test="request.patientId != null "> AND p.patient_id = #{request.patientId, jdbcType=VARCHAR} </if> <if test="request.visitNo != null "> AND p.visit_no = #{request.visitNo, jdbcType=VARCHAR} </if> and p.operate_type ='退回送出' </where> )temp order by temp.oper_time
本文作者:Weee
本文链接:
版权声明:本博客所有文章除特别声明外,均采用 BY-NC-SA 许可协议。转载请注明出处!