最受欢迎的商品名称,吸引首次购买的买家
<p>假设我有一个带有DateTime列的表,名为purchase_time,还有其他订单细节(store_id、buyer_id、item_id、value),我想找到买家在他们第一次购买时最常购买的商品名称。</p>
<p>到目前为止,我已经做到了这一点,但如何找到最受欢迎的商品呢?</p>
<pre class="brush:php;toolbar:false;">select store_id, from transactions
where purchase_time in (select min(purchase_time)
from transactions c1 group by c1.store_id);</pre></p>