个人博客遇到的问题
Posted Mr、Guo
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了个人博客遇到的问题相关的知识,希望对你有一定的参考价值。
1.数据库中type类型为tinyint,默认为0。在数据库中查询条件为type=0时能够正确查询,但是集成到Mybatis中却将所有的数据显示出来了
解决:Mybatis中的if条件去掉type!=‘‘,原来是 type != null and type!=‘‘
select id, type, createtime, content,title from tb_blog_info <where> <if test="type != null"> type=#{type,jdbcType=TINYINT} </if> </where> ORDER BY createtime DESC limit #{start},#{stop}
以上是关于个人博客遇到的问题的主要内容,如果未能解决你的问题,请参考以下文章