假设我有一个带有DateTime列的表,名为purchase_time,还有其他订单细节(store_id、buyer_id、item_id、value),我想找到买家在他们第一次购买时最常购买的商品名称。
到目前为止,我已经做到了这一点,但如何找到最受欢迎的商品呢?
select store_id, from transactions where purchase_time in (select min(purchase_time) from transactions c1 group by c1.store_id);
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号