mysql-查询一个表用户对新增用户进行统计不能用notin需要用exists
来源:懂视网
责编:小采
时间:2020-11-09 16:58:21
mysql-查询一个表用户对新增用户进行统计不能用notin需要用exists
mysql-查询一个表用户对新增用户进行统计不能用notin需要用exists:mysql 下面是用not in 实现的 ,需要修改为 exists实现SELECT COUNT(*) from order_info_ref as oif where oif.order_time>='2016-03-02 00:01:00' and oif.order_time(SELECT oi.ca_user_id from or
导读mysql-查询一个表用户对新增用户进行统计不能用notin需要用exists:mysql 下面是用not in 实现的 ,需要修改为 exists实现SELECT COUNT(*) from order_info_ref as oif where oif.order_time>='2016-03-02 00:01:00' and oif.order_time(SELECT oi.ca_user_id from or
mysql
下面是用not in 实现的 ,需要修改为 exists实现
SELECT COUNT(*) from order_info_ref as oif where oif.order_time>='2016-03-02 00:01:00' and oif.order_time<='2016-03-02 23:59:59' and oif.ca_user_id NOT in
(SELECT oi.ca_user_id from order_info_ref as oi where oi.order_time>='2016-03-01 00:01:00' and oi.order_time<='2016-03-01 23:59:59');
声明:本网页内容旨在传播知识,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。TEL:177 7030 7066 E-MAIL:11247931@qq.com
mysql-查询一个表用户对新增用户进行统计不能用notin需要用exists
mysql-查询一个表用户对新增用户进行统计不能用notin需要用exists:mysql 下面是用not in 实现的 ,需要修改为 exists实现SELECT COUNT(*) from order_info_ref as oif where oif.order_time>='2016-03-02 00:01:00' and oif.order_time(SELECT oi.ca_user_id from or