Java教程

一个输入框搜索多个字段SQL

本文主要是介绍一个输入框搜索多个字段SQL,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

例子图片

 

 

 具体SQL:是使用concat..(不了解concat的使用就去简单看一下就懂了,简单的理解是字符串的拼接)

详细:

select * 

FROM
    biz_lis_request_information a
    LEFT JOIN biz_lis_sample c ON a.barcode = c.barcode
<where>
    <if test="patientId != null and patientId != ''">
        CONCAT(IFNULL(a.patient_name,''),IFNULL(a.patient_id,''),IFNULL(a.barcode,''),IFNULL(a.request_doct_name,''),IFNULL(a.execute_doct_id,''),IFNULL(c.sample_no,''))  LIKE concat( '%', #{patientId}, '%' )
    </if>
  <if test="sendOrganizationId != null "> and a.send_organization_id = #{sendOrganizationId}</if>
  <if test="barcode != null and barcode!='' "> and a.barcode = #{barcode}</if>
</where>
order by a.request_doct_date desc
详解:
CONCAT(IFNULL(a.patient_name,''),IFNULL(a.patient_id,''),IFNULL(a.barcode,''),IFNULL(a.request_doct_name,''),IFNULL(a.execute_doct_id,''),IFNULL(c.sample_no,''))  LIKE concat( '%', #{patientId}, '%' )
1.IFNULL:为空的结果取 ‘’
2.#{patientId}:图片中的查询字段
3.CONCAT(‘’‘’‘’‘不为空字段’)LIKE concat( '%', #{patientId}, '%' )  == patientId 通过模糊查询 ‘不为空字段’
4.(不了解concat的使用就去简单看一下就懂了,简单的理解是字符串的拼接)



这篇关于一个输入框搜索多个字段SQL的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!