mybatis sql语句转化

Posted Dar_Alpha

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mybatis sql语句转化相关的知识,希望对你有一定的参考价值。

SELECT
<include refid="Base_Column_List"/>
FROM
mmall_product
<where>
<if test="productName != null">
and name=#{productName}
</if>
<if test="productId">
and id=#{productId}
</if>
</where>
<where>标签对作用:如果where标签下的if标签成立,则将成立的第一个if标签下的and或or转为 where












以上是关于mybatis sql语句转化的主要内容,如果未能解决你的问题,请参考以下文章

Mybatis 是如何操作 sql 语句的

SpringBoot 中的 Mybatis 打印 执行过的SQL语句

mybatis--MyBatis动态SQL语句

MyBatis:动态sql语句

mybatis 动态sql语句

mybatis 动态SQL .2