DataWorks_数据服务_高级sql mybatis标签实现“可选”

场景:高级sql mybatis标签实现“可选”案例。

实现:

DataWorks_数据服务_高级sql mybatis标签实现“可选”

<where>  
<if test="propertyid!=null and propertyid!= '' ">
    propertyid = ${propertyid}
</if>
</where>

-- 如果想使用in的方式,需要在请求参数里把propertyid设置为list类型
<where>  
    <if test='propertyid != null'>
    propertyid in  
    <foreach collection="propertyid" open="(" close=")" separator="," item="propertyid">
        ${propertyid}
    </foreach>
    </if>
</where>
上一篇:linux磁盘分区


下一篇:DataWorks_赋值节点三种赋值语言+数据库节点MySQL、三种取值方式使用案例