码迷,mamicode.com
首页 > 数据库 > 详细

mysql if函数使用例子

时间:2017-11-17 16:17:20      阅读:226      评论:0      收藏:0      [点我收藏+]

标签:mys   condition   sse   color   rom   mysql   passenger   type   from   

1.场景一

有时查询数量a 同时查询过滤后的数量b

 

2. 代码

SELECT
    count(id) as total_count,
    count(
        IF (
            date(order_time) = DATE(now()),
            1,
            NULL
        )
    ) as today_count
FROM
    passenger_activity_record
where a = #{a,jdbcType=INTEGER}
and b_id= #{bId,jdbcType=INTEGER}

3. 说明

3.1 可以嵌套

3.2 ifnull(condition, expr1)功能类似 当condition为null 则返回expr1 ,否则返回 condition

 

mysql if函数使用例子

标签:mys   condition   sse   color   rom   mysql   passenger   type   from   

原文地址:http://www.cnblogs.com/rocky-fang/p/7851786.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!