gpt4 book ai didi

Mysql按功能分组

转载 作者:行者123 更新时间:2023-11-30 00:23:56 25 4
gpt4 key购买 nike

这是我的 table :

Id customer email        timestamp             store_id
1 1 abc@xx.com 2014-04-11 17:06:21 5416
2 0 xyz@xy.com 2014-04-11 15:05:23 5416
3 1 abc@xx.com 2014-04-11 17:55:34 5416
4 2 bca@bc.com 2014-04-11 17:55:34 5416

我的查询是:

SELECT *, count(*) as total FROM `tybo_orders` 
WHERE timestamp IN (SELECT max(timestamp) FROM `tybo_orders`
GROUP BY email) AND store_id='5416' GROUP BY email

customer 列中的值为 0 表示访客,大于 0 表示客户 ID。如果 customer 为 0,我想按 email 分组,否则按 customer 分组。怎么可能?

最佳答案

尝试这样

SELECT *, count(*) as total 
FROM `tybo_orders`
WHERE timestamp IN (SELECT max(timestamp) FROM `tybo_orders` GROUP BY email)
AND
store_id='5416'
GROUP BY
case when customer=0 then customer else email end

关于Mysql按功能分组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23026214/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com