码迷,mamicode.com
首页 > 其他好文 > 详细

mybatis问题整理

时间:2019-08-02 20:27:48      阅读:90      评论:0      收藏:0      [点我收藏+]

标签:join   des   HERE   res   order   mybatis   code   type   _id   

// List<String> findBuildByProject(String prjName);

//单参数时使用<if></if>标签判断采用“_parameter”
<select id="findBuildByProject" parameterType="string" resultType="string">
    select b.build_name
    FROM
    tb_project p inner join tb_build b on p.id = b.prj_id
    <where>
        <if test="_parameter != null and _parameter !=''">
            and p.prj_name = #{_parameter}
        </if>
    </where>
    order by b.id desc
</select>

mybatis问题整理

标签:join   des   HERE   res   order   mybatis   code   type   _id   

原文地址:https://www.cnblogs.com/itzlg/p/11290817.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!