【原创】MyBatis之坑:MapperXML文件报错(Unable to resolve table ‘LIMIT‘)
和标签使用可能会出现的问题java - When use both WHERE IF DESC and LIMIT by Mybatis, IDEA shows Unable to resolve table 'LIMIT' - Stack Overflowhttps://stackoverflow.com/questions/60575770/
·
解决方案
注意你的<where></where>标签
把它换成where关键字
<select id="XXX" resultMap="XXX">
SELECT * FROM tb_shop s
WHERE
<if test="xxx.price != null">
xxxxxx
</if>
ORDER BY price DESC LIMIT 10, 5;
</select>
<WHERE>和<IF>标签使用可能会出现的问题
Stack Overflow类似问题
更多推荐
已为社区贡献2条内容
所有评论(0)