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.…
mysql substr() 函数 用法:substr(string string,num start,num length); string为字符串:start为起始位置:length为长度. 注意:mysql中的start是从1开始的. 例子:(查出kename字段中第一次出现.之前的字符串) select kename,substr(kename,1,locate('.',kename)) as subkename from web_dev_api where 1; …