编程语言
首页 > 编程语言> > java内条件查询 <where> </where>标签

java内条件查询 <where> </where>标签

作者:互联网

    <!--条件查询-->
<select id="selectone" resultType="pojo.DishEnpty">
select * from dish
<where>
<if test="type!=null and type !=''">
type=#{type}
</if>

<if test="name!=null and name!=''">
name like #{name}
</if>
</where>

</select>

标签:java,name,标签,查询,dish,type,select,like
来源: https://www.cnblogs.com/koushijun575/p/16129205.html