java - 使用ibatis 统计查询的时候 是否会得到null值的结果?
黄舟
黄舟 2017-04-18 10:41:14
0
3
457
黄舟
黄舟

人生最曼妙的风景,竟是内心的淡定与从容!

reply all (3)
Ty80

The count function returns a numerical type and will not get null

    大家讲道理

    Will it benull这取决于你的sqlibatis没有任何关系。
    select count(1) from test where 1=0你可以使用这个sql证明一下会不会为null?

      Peter_Zhu

      Direct conversion toIntegerwill not work, but unboxing will.

      int i = (Integer) null; //NullPointer Exception Integer i1 = (Integer) null; //null
        Latest Downloads
        More>
        Web Effects
        Website Source Code
        Website Materials
        Front End Template
        About us Disclaimer Sitemap
        php.cn:Public welfare online PHP training,Help PHP learners grow quickly!