zoukankan      html  css  js  c++  java
  • ibatis有关模糊查询和And与Or联查的例子

       ibatis有时候需要操纵模糊查询,其SQL的语句为 Select t.userName,t.userPwd  from tb_user  t  where t.name like '%liu%'
    当需将改SQL用在ibatis中查询的时候,可以用以下语句:
    <select id="findUserByName" resultClass="com.example.User" resultSetType="SCROLL_INSENSITIVE"> select user_Name,user_Pwd from tb_user where 1=1 <isNotNull property="userName" prepend="AND"> user_Name like '%'||#userName#||'%' </isNotNull> </select>
    当需要查询查询语句中包含and 与or的表时,可以用以下语句:  
    <select id="findUserNum" resultClass="java.lang.Long" resultSetType="SCROLL_INSENSITIVE"> select count(*) from tb_user u where U.STATE = 'ENABLED' <dynamic prepend="and" open="(" close=")"> <isNotNull prepend="or" property="searchCondition"> u.user_name like '%'||#searchCondition#||'%' </isNotNull> <isNotNull prepend="or" property="searchCondition"> u.msisdn like '%'||#searchCondition#||'%' </isNotNull> </dynamic> </select>


     

    高度决定视野,角度改变观念,尺度把握人生。
  • 相关阅读:
    easyui datagrid 前后台代码
    JVM
    序列化
    Android UI设计
    多线程
    泛型
    字符串
    B+树:MySql数据库索引是如何实现的
    大数据判存算法:海量数据中快速判断某个数据是否存在
    陌生单词
  • 原文地址:https://www.cnblogs.com/liujian21st/p/2918681.html
Copyright © 2011-2022 走看看