select customerid
, count(*) as order_count
from orders
group by
customerid
having count(*) > 1
?signin=true
select customerid
, count(*) as order_count
from orders
group by
customerid
having count(*) > 1
For further actions, you may consider blocking this person and/or reporting abuse
Top comments (0)