首页 > 其他 > 详细

桥后总结 二

时间:2020-02-03 00:32:09      阅读:104      评论:0      收藏:0      [点我收藏+]

 

 

The operator != is undefined for the argument type(s) int, null

参数类型 int null 的操作符!=未定义

 

数据库MySQL

select  count(*)
from tb_item
where name like 笔%
and id =13 ;

 计数  :  count([distinct | All]   expression  | *)

 

 

技术分享图片

table 的信息

技术分享图片

 

 

对应的JavaWeb 的代码

 

   <!-- 获取符合条件的总记录数:int getTotalByQueryVO(QueryVo vo); -->
   <SELECT id="getTotalByQueryVO" parameterType="QueryVo" resultType="Integer">
      SELECT COUNT(1) FROM tb_item
      <WHERE>
           <IF test="id!=null">
             id=#{id}
         </IF>
         <IF test="name!=null">
             AND NAME  LIKE  "%"#{NAME}"%"
         </IF>
      </WHERE>
   </SELECT>

 

桥后总结 二

原文:https://www.cnblogs.com/WLCYSYS/p/12254282.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!