29.存在如下配置: <select id="sqiLog" parameterType="appLog"resultType="appLog"> select*from t_applog where <if test="title!=null"> title=#{title}</if>
时间: 2023-06-06 12:07:19 浏览: 85
"sqiLog"的配置是一个Mybatis的<select>标签,在其中定义了一个名为"sqiLog"的SQL查询语句,使用了一个名为"appLog"的参数类型,并且指定了返回结果的类型也是"appLog"。在SQL查询语句中使用了一个<if>标签,用于判断参数"title"是否为null,如果不为null则会加上一个"where title=参数title"的条件。
阅读全文
相关推荐














