专业网站建设品牌,十四年专业建站经验,服务6000+客户--广州京杭网络
免费热线:400-683-0016      微信咨询  |  联系我们

Mybatis处理select中where后面的and的两种方式

当前位置:网站建设 > 技术支持
资料来源:网络整理       时间:2023/2/14 0:53:20       共计:3628 浏览
第一种方式:后面跟1=1,使条件绝对成立:

    <select id="selectStudent">
        select * from student where 1=1
        <if test=" id !=null and id !='' ">
            and id = #{id}
        </if>
        <if test=" name !=null and name !='' ">
            and  name = #{name}
        </if>
    </select>

第二种方式:后面跟<where>标签,将第一个and过滤(不会过滤第二个):

    <select id="selectStudent">
        select * from student where
        <where>
            <if test=" id !=null and id !='' ">
                and id = #{id}
            </if>
            <if test=" name !=null and name !='' ">
                and  name = #{name}
            </if>
        </where>
    </select>
版权说明:
本网站凡注明“广州京杭 原创”的皆为本站原创文章,如需转载请注明出处!
本网转载皆注明出处,遵循行业规范,如发现作品内容版权或其它问题的,请与我们联系处理!
欢迎扫描右侧微信二维码与我们联系。
·上一条:MyBatis where标签语句 | ·下一条:MyBatis的Insert操作详解

Copyright © 广州京杭网络科技有限公司 2005-2024 版权所有    粤ICP备16019765号 

广州京杭网络科技有限公司 版权所有